How TO - List Grid View

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP




<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]
-->



How TO - List Grid View



❮ Previous
Next ❯


How to create a list grid view.



Click on a button to choose list view or grid view.










Column 1


Some text..




Column 2


Some text..






Column 3


Some text..




Column 4


Some text..






// Get the elements with class="column"
var elements = document.getElementsByClassName("column");

// Declare a loop variable
var i;

// Four images side by side
function listView()
for (i = 0; i < elements.length; i++)
elements[i].style.width = "100%";



// Two images side by side
function gridView()
for (i = 0; i < elements.length; i++)
elements[i].style.width = "50%";


// Add active class to the current button (highlight it)
var btnContainer = document.getElementById("myBtnContainer");
var btnss = btnContainer.getElementsByClassName("btnr");
for (var j = 0; j < btnss.length; j++)
btnss[j].addEventListener("click", function()
var current = document.getElementsByClassName("as");
current[0].className = current[0].className.replace(" as", "");
this.className += " as";
);


Try it Yourself »


List Grid View


Step 1) Add HTML:


Example



<!-- Load Font Awesome Icon Library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

<!-- Buttons to choose list or grid view -->
<button onclick="listView()"><i class="fa fa-bars"></i> List</button>

<button onclick="gridView()"><i class="fa fa-th-large"></i> Grid</button>

<div class="row">
  <div class="column" style="background-color:#aaa;">
   
<h2>Column 1</h2>
    <p>Some text..</p>
  </div>
 
<div class="column" style="background-color:#bbb;">
   
<h2>Column 2</h2>
    <p>Some text..</p>
  </div>

</div>

<div class="row">
  <div class="column"
style="background-color:#ccc;">
    <h2>Column 3</h2>
   
<p>Some text..</p>
  </div>
  <div class="column"
style="background-color:#ddd;">
    <h2>Column 4</h2>
   
<p>Some text..</p>
  </div>
</div>



Step 2) Add CSS:


Example



/* Create two equal columns that
floats next to each other */
.column
    float: left;
   
width: 50%;
    padding: 10px;


/* Clear floats after the columns */
.row:after

    content: "";
    display: table;
   
clear: both;




Step 3) Add JavaScript:


Example



// Get the elements with class="column"
var elements =
document.getElementsByClassName("column");

// Declare a loop variable

var i;

// List View
function listView()
  for (i = 0; i <
elements.length; i++)
    elements[i].style.width =
"100%";
 



// Grid View
function gridView()
  for (i = 0; i <
elements.length; i++)
    elements[i].style.width = "50%";
 


Try it Yourself »




❮ Previous
Next ❯

Popular posts from this blog

WWE Night of Champions

Poznań

Kaliningrad