非レスポンシブスライダー
動いたのでとりあえずメモ。 HTML
1 2 3 4 5 6 7 8 9 10 11 |
<div class="slidercontainer"> <ul id="slider"> <li class="slide selected"><img src="" alt="" width="" height="" /></li> <li class="slide"><img src="" alt="" width="" height="" /></li> <li class="slide"><img src="" alt="" width="" height="" /></li> <li class="slide"><img src="" alt="" width="" height="" /></li> </ul> <button id="prev">前のスライド</button> <button id="next">次のスライド</button> <div style="clear:both"></div> </div> |
スタイル
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 |
.slidercontainer { margin:100px auto; padding:10px; width:487px;/*スライド幅+22ピクセル*/ border:1px solid #ccc; } #slider { display:block; width:100%; height:261px;/*スライド高さ*/ padding:0; margin:0 0 10px; overflow:hidden; } #prev, #next { bottom:0; display:block; width:120px; background-color:#00ABFF; padding:5px; border:none; font-size:17px; color:#fff; } #prev { float:left; } #next { float:right; } |
jQuery [crayon-673fa…