web-dev-qa-db-ja.com

トグル幅サイズ変更アニメーション-jquery

私が持っています <div id="test"></div>および<a id="trigger"></a>。 Divの幅は300pxです。ユーザーがトリガーをクリックしたときにdivのサイズを100pxに変更し、ユーザーがトリガーをもう一度クリックしたときに以前のサイズにサイズ変更したい。 jqueryを使用してこれを作成するにはどうすればよいですか?

前もって感謝します...:)

blasteralfred

12

クリックに1、クリック解除に0の変数を割り当ててから、次のように.click関数を使用します。

$(document).ready(function(){
  TriggerClick = 0;

  $("a#trigger").click(function(){
    if(TriggerClick==0){
         TriggerClick=1;
         $("div#test").animate({width:'100px'}, 500);
    }else{
         TriggerClick=0;
         $("div#test").animate({width:'300px'}, 500);
    };
  });
});

更新-より良い回答

私はしばらく前にこの提案をしました。しかし、これを解決するためのよりエレガントで実用的なアプローチがあると信じています。 CSSトランジションを使用して、トランジションを開始するクラスをjqueryに追加/削除させることができます。

ワーキングフィドル: https://jsfiddle.net/2q0odoLk/

CSS:

#test {
  height: 300px;
  width: 300px;
  background-color: red;

  /* setup the css transitions */
  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  transition: width 1s;
}

#test.small {
   width: 100px;
}

jQuery:

$("a#trigger").on('click', function(){
    $("div#test").toggleClass('small');
});
29
sadmicrowave

これは、このトグルのHtml Partです:

<div id="start">
    <div class="slide"></div>
</div>

これはCSS partです:

<style>
    #start{ margin-bottom:60px; display:block; font-size:16px; width:14px; height:79px; position:relative; top:25px; line-height:21px; color:#F0F; background:url(./start1.JPG) left top no-repeat;}    
    .slide{ background:#98bf21; max-width:500px; width:100; height:100px;position:absolute; left:14px;}
</style>
     <script> 
        $(document).ready(function()
        {
            function tog()
            {  
                var w = $(".slide").css('width');

                 if(w=='0px')
                 {
                    $(".slide").animate({
                    width:500
                 });
           }
           else
           {
              $(".slide").animate({
              width:0
              });
           }
        }

        $("#start").click(function()
        {
            tog();
        });
      });
    </script>

このような何かがトリックになります。

$('#trigger').bind('click', function() { $('#test').animate({"width": "100px"}, "slow"); })
0
downed

より短いがまだ機能しているバージョンを探している人のために、あなたはこれをすることができます:

$('a#trigger').on('click', function(e) {
    e.preventDefault();
    var w = ($('div#test').width() == 300 ? 100 : 300);
    $('div#test').animate({width:w},150);
});

最短バージョン:

$('a#trigger').on('click', function(e) {
    e.preventDefault();
    $('div#test').animate({width:($('div#test').width() == 300 ? 100 : 300)},150);
});

関数について:

function toggleWidth(target, start, end, duration) {
    var w = ($(target).width() == start ? end : start);
    $(target).animate({width:w},duration);
    return w;
}

使用法:

$('a#trigger').on('click', function(e) {
    e.preventDefault();
    toggleWidth($("div#test"), 300, 100, 150);
});

最後に、JQuery.fn.extend関数について:

jQuery.fn.extend({
    toggleWidth: function(start, end, duration) {
        var w = ($(this).width() == start ? end : start);
        $(this).animate({width:w},duration);
        return w;
    }
});

使用法:

$('a#trigger').on('click', function(e) {
    e.preventDefault();
    $("div#test").toggleWidth(300, 100, 150);
});
0
Joscplan

.click()-Eventを#triggerにバインドし、アニメーションを切り替える必要があります。

http://api.jquery.com/toggle/

http://api.jquery.com/animate/

0
Sutuma