-
Notifications
You must be signed in to change notification settings - Fork 125
/
demo5.html
38 lines (35 loc) · 948 Bytes
/
demo5.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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>网页标题</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0">
<meta name="format-detection" content="telephone=no">
<style type="text/css">
body{margin: 0;}
.item-1{background: #ccc;}
.item-2{background: #fcc;}
.item-2 img{width: 200%;opacity:0;-webkit-transition:all 1s;}
.play.item-2 img{opacity:1;width: 100%;}
</style>
</head>
<body>
<div class="wrap">
<div class="item item-1">
1
</div>
<div class="item item-2">
<img src="http://msa.oa.com/uploads/data/201529/de9e1b6c445e5e8f97c0e24a8b436ab6.jpg" alt="" title="" />
</div>
<div class="item item-3">
3
</div>
</div>
<script type="text/javascript" src="iSlider.js"></script>
<script type="text/javascript">
new iSlider()
</script>
</body>
</html>