I am curious to know if it is possible to replicate the tile system found in the modern UI of Windows 8 on an HTML page.
I have already created a demo based on a website. You can view it here. Below is the code snippet:
<div class="tile pos1-1 w1h1 techolive"></div>
<div class="tile pos1-2 w1h1 techblue"></div>
<div class="tile pos2-2 w1h1 techred"></div>
<div class="tilebanner" style="font-size: 20px !important;">
<a class="tile pos2-3 w2h1 techdarkblue" href="...">
List of<br/>
Sessions
</a>
</div>
Now, I am interested in adding the same slide movement effect seen in modern UI. I believe this requires JavaScript. I am also wondering if HTML5 or CSS may offer a similar feature. Do you know where I can find a sample to achieve this effect?