2011-01-10 12 views
0

私はJQ UIsliderを実装しようとしていますが、問題は継続しているので、誰かが助けてくれることを願っています。JQueryスライダの問題

"スライダー"ボタンのJQUIイメージなしでやりたいと思っています。私はこれまでに得ることができるが、私はそれが "適切に"働くようにすることはできません。私のコードは次のようである:

HTML:

<div id="scroll-pane" class="clearfix" > 
<div id="pagination" class="clearfix"></div> 
<div class="scroll-bar-wrap"> 
<div class="scroll-bar"></div></div> 
</div> 

CSS:

.scroll-bar { background-color:#00FFFF; width: 50px; height: 20px; } 
#pagination { width: 2440px; float: left; } 
#scroll-pane { overflow: auto; width: 99%; float:left; } 
.scroll-bar-wrap { clear: left; padding: 0 4px 0 2px; margin: 0 -1px -1px -1px; background: #FFCC00; width: 400px; } 
.scroll-bar-wrap .ui-slider { border:0; height: 2em; margin: 0 auto; background: #FF0000; width: 20px;} 

とJQはこのようなものです:(ところで、私はそれのいずれかを理解していない!)

$(document).ready(function() { 

    var scrollPane = $("#scroll-pane"), 
    scrollContent = $("#pagination"); 
    var scrollbar = $(".scroll-bar").slider({ 
     slide: function(event, ui) { 
      if (scrollContent.width() > scrollPane.width()) { 
       scrollContent.css("margin-left", Math.round(
        ui.value/100 * (scrollPane.width() - scrollContent.width()) 
       ) + "px"); 
      } else { 
       scrollContent.css("margin-left", 0); 
      } 
     } 
    }); 

    //append icon to handle 
    var handleHelper = scrollbar.find(".ui-slider-handle") 
    .mousedown(function() { 
     scrollbar.width(handleHelper.width()); 
    }) 
    .mouseup(function() { 
     scrollbar.width("100%"); 
    }) 
    .append("<span class='ui-icon ui-icon-grip-dotted-vertical'></span>") 
    .wrap("<div class='ui-handle-helper-parent'></div>").parent(); 

    //change overflow to hidden now that slider handles the scrolling 
    scrollPane.css("overflow", "hidden"); 

    //size scrollbar and handle proportionally to scroll distance 
    function sizeScrollbar() { 
     var remainder = scrollContent.width() - scrollPane.width(); 
     var proportion = remainder/scrollContent.width(); 
     var handleSize = scrollPane.width() - (proportion * scrollPane.width()); 
     scrollbar.find(".ui-slider-handle").css({ 
      width: handleSize, 
      "margin-left": -handleSize/2 
     }); 
     handleHelper.width("").width(scrollbar.width() - handleSize); 
    } 

    //reset slider value based on scroll content position 
    function resetValue() { 
     var remainder = scrollPane.width() - scrollContent.width(); 
     var leftVal = scrollContent.css("margin-left") === "auto" ? 0 : 
      parseInt(scrollContent.css("margin-left")); 
     var percentage = Math.round(leftVal/remainder * 100); 
     scrollbar.slider("value", percentage); 
    } 

    //if the slider is 100% and window gets larger, reveal content 
    function reflowContent() { 
      var showing = scrollContent.width() + parseInt(scrollContent.css("margin-left"), 10); 
      var gap = scrollPane.width() - showing; 
      if (gap > 0) { 
       scrollContent.css("margin-left", parseInt(scrollContent.css("margin-left"), 10) + gap); 
      } 
    } 

    //change handle position on window resize 
    $(window).resize(function() { 
     resetValue(); 
     sizeScrollbar(); 
     reflowContent(); 
    }); 
    //init scrollbar size 
    setTimeout(sizeScrollbar, 10);//safari wants a timeout 
}); 

#paginationのコンテンツは「動的に」生成されます。私が持っている問題は、.scroll-bar-wrap .ui-sliderはスライドしません(アニメーション)。ちょうどそれに触れるだけで、スライドの内容があまりにも速く動いてしまい、「戻す」ことが非常に難しいです。

私が必要とするのは、ページ番号が作成されたときにページ番号を表示/非表示にするために#ページが左右に移動する「単純なスライダ状況」です。何かがJQUIコードが "複雑すぎる"と言っています - 私は間違っているかもしれませんが、これまでのところ単純なことにははるかに多くの時間がかかっています - OKはJQ/JS型の人ではありません。 .JQUIの例のlink textがうまくいき、これがそのコードです。私はちょうど彼らがそれを持っているようにバックグラウンド/スライダボタンを望んでいない。これは複雑すぎる場合

答えて

0

することは、あなたはslideToプラグインを使用することができます。http://plugins.jquery.com/project/slideto

scrolltoがそれにスクロールできることを確認するために、あなたのページネーションのdiv内のすべてのページ番号の周りのスパンやdiv要素をラップします。

pageNumbers = $("#pagination").find("span.pagenumber"); 
... 
$("#pagination").scrollTo(pageNumbers.next()); 

あなたがあります:あなたは、スクロール状態を覚えているし、このような何かを行うことができるようにあなたは、その後、いくつかのスクロール能力を持つのdiv#改ページを拡張するjQueryオブジェクトを構築することができます

<div id="pagination"> 
    <span class="pagenumber">1</span> 
    <span class="pagenumber">2</span> 
    <span class="pagenumber">3</span> 
</div> 

これを正しく動作させるためにjQueryの知識を得るには!あなたが達成しようとしていることをより徹底的に説明できるなら、私はあなたを助けることができます。