forked from codrops/SelectInspiration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multiple.html
82 lines (82 loc) · 3.4 KB
/
multiple.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
75
76
77
78
79
80
81
82
<!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 1</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-border.css" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="demo-1">
<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 class="current-demo" 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 href="index6.html">Rotate</a>
<a href="index7.html">Box Select</a>
<a href="index8.html">Circular</a>
</nav>
</header>
<section>
<div class="wrap">
<select class="cs-select cs-skin-border">
<option value="" disabled selected>Preferred contact method</option>
<option value="email">E-mail</option>
<option value="twitter">Twitter</option>
<option value="linkedin">LinkedIn</option>
</select>
</div>
<div class="wrap">
<select class="cs-select cs-skin-border">
<option value="" disabled selected>Favorite color</option>
<option value="red">Red</option>
<option value="blue">Blue</option>
<option value="yellow">Yellow</option>
</select>
</div>
</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>