之前写过的一段简单的demo,后来在IE10以下使用的时候发现无法使用,先上一段代码
HTML:
1 <div class="all" id="box">2 <img id="image" src="psb.png" width="512" height="1470" >3 <span id="up"></span>4 <span id="down"></span>5 </div>
CSS:
1 .all{
2 position: relative; 3 width: 512px;
4 height: 400px;
5 border: 1px solid #000;
6 margin:100px auto;
7 overflow: hidden; 8 } 9 span{10 width: 512px;
11 height: 200px;
12 position: absolute;
13 left: 0;
14 top: 0;
15 cursor: pointer;16 }17 #down{
18 top: auto;
19&nb


