-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (137 loc) · 2.66 KB
/
index.html
File metadata and controls
143 lines (137 loc) · 2.66 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>coveflow</title>
<style>
li{
list-style:none;
}
body{
padding:0;
margin:0;
height:100%;
width:100%;
overflow:hidden;
background:#333;
}
.coveflow{
width:1px;
height:1px;
position:absolute;
top:50%;
left:50%;
}
.coveflow *{
margin:0;
padding:0;
list-style:none;
top:-200px;
}
.coveflow div{
width:480px;
height:360px;
position:absolute;
-webkit-transition: -webkit-transform 300ms ease-out;
}
.coveflow ul{
-webkit-perspective: 480;
-webkit-transform-style:flat;
}
.coveflow li{
display:block;
width:480px;
-webkit-transition: -webkit-transform 300ms ease-out;
-webkit-box-reflect: below 0 -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(60%, transparent), to(rgba(255,255,255,.2)));
}
.coveflow .turnLeft,.coveflow .turnRight{
-webkit-transform: scale(.6);
}
.coveflow .turnLeft li{
-webkit-transform: rotateY(40deg);
}
.coveflow .turnRight li{
-webkit-transform: rotateY(-40deg);
}
.coveflow .flat{
-webkit-transform: scale(1);
}
.coveflow .flat li{
-webkit-transform: rotateY( 0deg );
}
</style>
</head>
<body>
<div id="coveflow" class="coveflow">
<div >
<ul>
<li>
<img src="pic/1.jpg" />
</li>
</ul>
</div>
<div >
<ul>
<li>
<img src="pic/2.jpg" />
</li>
</ul>
</div>
<div >
<ul>
<li>
<img src="pic/3.jpg" />
</li>
</ul>
</div>
<div >
<ul>
<li>
<img src="pic/4.jpg" />
</li>
</ul>
</div>
<div>
<ul>
<li>
<img src="pic/5.jpg" />
</li>
</ul>
</div>
<div>
<ul>
<li>
<img src="pic/6.jpg" />
</li>
</ul>
</div>
<div>
<ul>
<li>
<img src="pic/7.jpg" />
</li>
</ul>
</div>
<div>
<ul>
<li>
<img src="pic/8.jpg" />
</li>
</ul>
</div>
<div>
<ul>
<li>
<img src="pic/9.jpg" />
</li>
</ul>
</div>
</div>
<script src="jquery.js" ></script>
<script src="coveflow.js" ></script>
<script>
//$('#coveflow').coveflow({onIndexChanged:function(index){alert(index)}});
$('#coveflow').coveflow({onIndexChanged:function(index){}});
</script>
</body>
</html>