-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 1.08 KB
/
index.html
File metadata and controls
45 lines (40 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>roulette</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<script src="jquery.min.js"></script>
<script type='text/javascript' src='jquery.easing.1.3.js'></script>
<script type='text/javascript' src='code.js'></script>
<style type="text/css">
#photos {
position:relative;
<!-- width:450px; -->
<!-- margin:0 auto; -->
}
#photos img {
position:absolute;
<!-- left:0; -->
}
<!-- #photos img.transparent { -->
<!-- opacity:0; -->
<!-- } -->
<!-- #photos img.visible { -->
<!-- opacity:1; -->
<!-- } -->
#photos img.winner {
opacity:1;
border-style:solid;
border-width:6px;
border-color:#98bf21;
-webkit-transition: opacity 2s ease-in-out;
-moz-transition: opacity 2s ease-in-out;
-o-transition: opacity 2s ease-in-out;
transition: opacity 2s ease-in-out;
}
</style>
</head>
<body>
<div id="photos">
</body>
</html>