-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrid_layout_with_media_queries.html
68 lines (63 loc) · 2.11 KB
/
grid_layout_with_media_queries.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Webpage Test</title>
<link rel="stylesheet" href="css/grid_layout_with_media_queries.css">
</head>
<body>
<p class="message">You need a browser that supports CSS Grid Layout to see this example properly!</p>
<div class="grid">
<header>Header</header>
<nav>
<ul>
<li><a href="#" class="lsf-icon" title="user">User</a></li>
<li><a href="#" class="lsf-icon" title="home">Home</a></li>
<li><a href="#" class="lsf-icon" title="cart">Cart</a></li>
<li><a href="#" class="lsf-icon" title="lock">Locked</a></li>
<li><a href="#" class="lsf-icon" title="love">Love</a></li>
</ul>
</nav>
<article>
<h1>Article</h1>
<p>Content for my excellent article would go here.</p>
<p>Simple use for mailto link.</p>
<a href="mailto:[email protected]" class="lsf">mail</a>
<p>Use tha icon with text.</p>
<a href="http://twitter.com/" class="lsf-icon" title="soundcloud">Soundcloud</a>
<p>Use tha icon with unicode.</p>
<a href="http://amazon.com/" class="lsf-icon amazon">Amazon</a>
</article>
<aside><a href="#">Introduction</a>
<a href="#">First Article</a>
<a href="#">Second Article</a>
<a href="#">Third Article</a>
<a href="#">Fourth Article</a></aside>
<footer>Footer</footer>
</div>
</body>
<script type="text/javascript">
var bgImageArray = ["background.jpg", "back2.jpg", "back1.jpg", "back1.png", "back3.jpg", "back4.jpg"],
base = "./images/",
secs = 6;
bgImageArray.forEach(function(img){
new Image().src = base + img;
});
function backgroundSequence() {
window.clearTimeout();
var k = 0;
for (var i = 0; i < bgImageArray.length; i++) {
setTimeout(function(){
document.documentElement.style.background = "url(" + base + bgImageArray[k] + ") no-repeat center center fixed";
document.documentElement.style.backgroundSize = "cover";
if ((k + 1) === bgImageArray.length) {
setTimeout(function() {
backgroundSequence() }, (secs * 1000))
} else { k++; }
}, (secs * 1000) * i)
}
}
backgroundSequence();
</script>
</html>