每當我嘗試移動圖像時,即使我專門識別身份證,它們也會一起移動而不是單獨移動。css圖像一起移動而不是單獨移動
body {
margin:0;
padding:0;
position:relative;
background:url(../images/imgs/backgrnd.png) no-repeat;
background-size:cover;
}
@font-face {
font-family:mainText;
src:url(../font/HelveticaNeueLTPro-UltLtEx.otf);
}
#holder {
background:url(../images/imgs/rectangle%20and%20letters.png) no-repeat;
width:500px;
height:600px;
position:relative;
margin-left:auto;
margin-right:auto;
margin-top:11.2em;
}
ul {
list-style:none;
list-type:none;
padding:0;
margin:0;
}
#nextarrow {
margin-left:350px;
}
<section id="cont"> <!-- main content wrapper -->
<div id="holder">
<ul id="imagelist"> <!-- image cycle: prev/next -->
<li><img src="images/imgs/iPhone.png" width="256" height="256" border="0"></li>
<li><img src="images/imgs/websitesimg.png" width="289" height="187" border="0"></li>
</ul>
</div>
</section>
<div id="arrows">
<img src="images/imgs/rightarrow.png" id="nextarrow" width="15" height="130" alt="ja" />
<img src="images/imgs/leftarrow.png" id="prevarrow" width="15" height="130" alt="la" />
</div>
內DIV ID =「箭頭」的圖像是什麼,我試圖移動,即使我指定#nextarrow {它是由兩種標識移動整個我只想一次移動一個圖像或使用第一/最後一個子
我認爲你需要切換圖像,所以左是先,然後是右。這裏是一個jsfiddle解釋我的意思:http://jsfiddle.net/HdA24/1/請告訴我,如果這個工程!我有興趣知道! – BuddhistBeast