forked from codrops/SamsungGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·68 lines (65 loc) · 3.28 KB
/
index.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 lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Grid Loading and Hover Effect | Demo 1</title>
<meta name="description" content="Grid Loading and Hover Effect: Recreating Samsung's grid loading effect" />
<meta name="keywords" content="grid loading, swipe, effect, slide, masonry, web design, tutorial" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<div class="container">
<!-- Top Navigation -->
<div class="codrops-top clearfix">
<a class="codrops-icon codrops-icon-prev" href="http://tympanus.net/Development/ButtonComponentMorph/"><span>Previous Demo</span></a>
<span class="right"><a class="codrops-icon codrops-icon-drop" href="http://tympanus.net/codrops/?p=19069"><span>Back to the Codrops Article</span></a></span>
</div>
<header class="codrops-header">
<h1>Grid Loading and Hover Effect <span>Recreating <a href="http://design.samsung.com/">Samsung's</a> grid loading effect</span></h1>
<nav class="codrops-demos">
<a class="current-demo" href="index.html">Swipe right</a>
<a href="index2.html">Swipe Down</a>
<a href="index3.html">Rotate</a>
</nav>
</header>
<section class="grid-wrap">
<ul class="grid swipe-right" id="grid">
<li class="title-box">
</li>
<li><a href="#"><img src="https://reesha122.github.io/abc/pics/yourseesha_20200921_130113_0.jpg" alt="dummy" width="400" height="400"><h3>A fantastic title</h3></a></li>
<li><a href="#"><img src="https://reesha122.github.io/abc/pics/yourseesha_20200921_130113_1.jpg" alt="dummy" width="400" height="400"><h3>A fantastic title</h3></a></li>
<li><a href="#"><img src="https://reesha122.github.io/abc/pics/yourseesha_20200921_130113_3.jpg" alt="dummy"><h3>A fantastic title</h3></a></li>
<li><a href="#"><img src="https://reesha122.github.io/abc/pics/yourseesha_20200921_130113_4.jpg" alt="dummy"><h3>A fantastic title</h3></a></li>
</ul>
</section>
<section class="related">
<p>If you enjoyed this demo you might also like:</p>
<a href="http://tympanus.net/Development/ThumbnailGridAnimations/">
<img src="http://tympanus.net/codrops/wp-content/uploads/2013/10/ThumbnailGridAnimations1-300x162.jpg" />
<h3>Animations for Thumbnail Grids</h3>
</a>
<a href="http://tympanus.net/Development/GridLoadingEffects/">
<img src="http://tympanus.net/codrops/wp-content/uploads/2013/07/GridLoadingEffects-300x162.png" />
<h3>Grid Loading Effects</h3>
</a>
</section>
</div><!-- /container -->
<script src="js/masonry.pkgd.min.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/colorfinder-1.1.js"></script>
<script src="js/gridScrollFx.js"></script>
<script>
new GridScrollFx( document.getElementById( 'grid' ), {
viewportFactor : 0.4
} );
</script>
</body>
</html>