forked from codrops/SelectInspiration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index6.html
74 lines (74 loc) · 3.15 KB
/
index6.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
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en" class="no-js">
<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>Inspiration for Custom Select Elements | Demo 6</title>
<meta name="description" content="Creative styles and ideas for custom select elements" />
<meta name="keywords" content="custom select, select style, javascript, inspiration, select element" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>
<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/cs-select.css" />
<link rel="stylesheet" type="text/css" href="css/cs-skin-rotate.css" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="color-6">
<div class="container">
<!-- Top Navigation -->
<div class="codrops-top clearfix">
<a class="codrops-icon codrops-icon-prev" href="http://tympanus.net/Development/DraggableDualViewSlideshow/"><span>Previous Demo</span></a>
<span class="right"><a class="codrops-icon codrops-icon-drop" href="http://tympanus.net/codrops/?p=19400"><span>Back to the Codrops Article</span></a></span>
</div>
<header class="codrops-header">
<h1><span>Inspiration for</span> Custom Select Elements</h1>
<nav class="codrops-demos">
<a href="index.html">Border</a>
<a href="index2.html">Underline</a>
<a href="index3.html">Elastic</a>
<a href="index4.html">Slide</a>
<a href="index5.html">Overlay</a>
<a class="current-demo" href="index6.html">Rotate</a>
<a href="index7.html">Box Select</a>
<a href="index8.html">Circular</a>
</nav>
</header>
<section>
<label class="select-label">Choose your Dinosaur:</label>
<select class="cs-select cs-skin-rotate">
<option value="1">Stegosaurus</option>
<option value="2">Velociraptor</option>
<option value="3">Spinosaurus</option>
<option value="4">Archaeopteryx</option>
<option value="5">Apatosaurus</option>
</select>
</section>
<!-- Related demos -->
<section class="related">
<p>If you enjoyed this demo you might also like:</p>
<a href="http://tympanus.net/Development/ResponsiveMultiLevelMenu/">
<img src="http://tympanus.net/codrops/wp-content/uploads/2013/04/MultiLevelMenu-300x162.jpg" />
<h3>Multi-Level Menu</h3>
</a>
<a href="http://tympanus.net/Development/SimpleDropDownEffects/">
<img src="http://tympanus.net/codrops/wp-content/uploads/2012/11/SimpleDropDownEffects-300x162.jpg" />
<h3>Drop-Down List Effects</h3>
</a>
</section>
</div><!-- /container -->
<script src="js/classie.js"></script>
<script src="js/selectFx.js"></script>
<script>
(function() {
[].slice.call( document.querySelectorAll( 'select.cs-select' ) ).forEach( function(el) {
new SelectFx(el);
} );
})();
</script>
</body>
</html>