2012-03-07 9 views
0

私はthisモバイル機器向けに最適化された素晴らしいjQuery Sliderプラグインを使用しています。スケールと数字でうまく動作します。Safari jQuery Sliderプラグインのサイズ

今、ハンドルとスライダ自体を増やしたいのですが、誰かがそれを行う方法を知っていますか?

答えて

1

あなたは画像アセットと.cssファイルの両方を編集する必要がありますが、下記の..あなたが編集されるだろうCSSの一部である

//---------------------------------------------// 
    .jslider .jslider-pointer { 
    width: 13px;//<-- increase the width here to match your new image... 
    height: 15px;//<-- increase the height here to match your new image... 
    background-position: 0 -40px; // you'll be editing this here as well based on what changes you make to the image, which is a imagemap of multiple different distinct image elements in jslider. any changes here need to be applied throughout to other elements 
    position: absolute; 
    left: 20%; 
    top: -4px; 
    margin-left: -6px; 
    cursor: pointer; 
    cursor: hand; 
    } 
//---------------------------------------------// 
    .jslider .jslider-bg i, .jslider .jslider-pointer { 
    background: url(../img/jslider.png) no-repeat 0 0;//<-- edit this image to the dimensions you need 
    } 
//---------------------------------------------//