-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·44 lines (39 loc) · 2.01 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Creating Android Dock Using jQuery & CSS3</title>
<meta name="description" content="Tutorial : Creating Android Dock Using jQuery & CSS3">
<meta name="author" content="Webstuffshare">
<link rel="stylesheet" href="demo.css?v=2">
</head>
<body>
<div id="container">
<h1>Creating Android Dock Using jQuery & CSS3</h1>
<em><a href="https://ssiddique.info/animated-android-dock-in-jquery-css3.html">• read tutorial •</a></em>
<span id="information" style="display:none">Your browser doesn't support CSS3 3D Transform</span>
</div>
<div id="dock-wrapper">
<div class="dock">
<div class="dock-front">
<img src="https://ssiddique.info/wp-content/uploads/2021/04//arrow-up.png" alt="Arrow Up" id="arrow-up" />
</div>
<div class="dock-top">
<img src="https://ssiddique.info/wp-content/uploads/2021/04//arrow-down.png" alt="Arrow Down" id="arrow-down" />
</div>
</div>
<div class="item">
<img src="https://ssiddique.info/wp-content/uploads/2021/04/launcher-pro.png" width="60" />
<img src="https://ssiddique.info/wp-content/uploads/2021/04/2do.png" width="60" />
<img src="https://ssiddique.info/wp-content/uploads/2021/04/antivirus.png" width="60" />
<img src="https://ssiddique.info/wp-content/uploads/2021/04/drive.png" width="60" />
<img src="https://ssiddique.info/wp-content/uploads/2021/04/plex.png" width="60" />
<img src="https://ssiddique.info/wp-content/uploads/2021/04/maps.png" width="60" />
</div>
</div>
<img src="https://ssiddique.info/wp-content/uploads/2021/04//arrow.png" alt="arrow" id="arrow" />
<script>!window.jQuery && document.write(unescape('%3Cscript src="javascript/jquery-1.7.2.min.js"%3E%3C/script%3E'))</script>
<script src="javascript/demo.js"></script>
<script src="javascript/modernizr.custom.34807.js"></script>
<script> if(!Modernizr.csstransforms3d) document.getElementById('information').style.display = 'block'; </script>
</body>
</html>