-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (46 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery effects</title>
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<!-- build:css css/final.css-->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<!-- /build -->
</head>
<body>
<div class="container">
<br>
<br>
<select class="form-control">
<optgroup label="basic">
<option value="fontSize:+=50px">grow</option>
<option value="fontSize:-=50px">shrink</option>
<option value="top:-100px">move up</option>
<option value="left:-250px">move left</option>
<option value="opacity:0">hide</option>
<option value="letterSpacing:25px">letter spacing</option>
<option value="borderWidth:10px">add border</option>
</optgroup>
<optgroup label="multiple">
<option value="top:100px:left:250px">bottom and right</option>
<option value="fontSize:+=50px:opacity:0">grow and hide</option>
<option value="borderWidth:10px:fontSize:-=50px">border and shrink</option>
</optgroup>
</select>
<br>
<br>
<h1 class="rainbow" id="target">
jQuery effects
</h1>
</div>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!-- build:js js/final.js -->
<script src="js/main.js"></script>
<!-- /build -->
</body>
</html>