web-dev-qa-db-ja.com

jQueryスライドを左に表示

以下に示すように、slideRightShow()およびslideLeftHide()と呼ばれるjQuery効果を、slideUp()およびslideDown()と同様に機能するいくつかの関数で拡張しました。ただし、slideLeftShow()slideRightHide()も実装したいと思います。

私はこの種のことを提供する実質的なライブラリがあることを知っています(別のjavascriptファイルの追加を避けたい)が、誰でもslideLeftShow()またはslideRightHide()の実装方法の簡単な例を提供できますか?

jQuery.fn.extend({
  slideRightShow: function() {
    return this.each(function() {
      jQuery(this).animate({width: 'show'});
    });
  },
  slideLeftHide: function() {
    return this.each(function() {
      jQuery(this).animate({width: 'hide'});
    });
  },
  slideRightHide: function() {
    return this.each(function() {
      ???
    });
  },
  slideLeftShow: function() {
    return this.each(function() {
      ???
    });
  }
});

上記のslideRightShow関数は、左側から画像を表示し始め、右側に向かって進みます。 同じことをする方法を探していますが、右側から始めて左側に向かって進みます。ありがとう!

編集

jQuery Interfaceには必要なものがあります(基本的に「右にスライド」および「左にスライド」機能が必要です)が、jQuery 1.3でこれを動作させることができませんでした: http://interface.eyecon .ro/demos/ifx.html 。また、彼らのデモは壊れているようで、100万のエラーをスローする前にスライドを1回だけ実行します。

110
Wickethewok

この機能はjquery uiの一部として含まれています http://docs.jquery.com/UI/Effects/Slide 独自の名前で拡張したい場合は、これを使用できます。

jQuery.fn.extend({
  slideRightShow: function() {
    return this.each(function() {
        $(this).show('slide', {direction: 'right'}, 1000);
    });
  },
  slideLeftHide: function() {
    return this.each(function() {
      $(this).hide('slide', {direction: 'left'}, 1000);
    });
  },
  slideRightHide: function() {
    return this.each(function() {
      $(this).hide('slide', {direction: 'right'}, 1000);
    });
  },
  slideLeftShow: function() {
    return this.each(function() {
      $(this).show('slide', {direction: 'left'}, 1000);
    });
  }
});

次の参照が必要になります

<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/latest/ui/jquery.effects.core.js"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/latest/ui/jquery.effects.slide.js"></script>
184
bendewey

パディングとマージンを忘れないでください...

jQuery.fn.slideLeftHide = function(speed, callback) { 
  this.animate({ 
    width: "hide", 
    paddingLeft: "hide", 
    paddingRight: "hide", 
    marginLeft: "hide", 
    marginRight: "hide" 
  }, speed, callback);
}

jQuery.fn.slideLeftShow = function(speed, callback) { 
  this.animate({ 
    width: "show", 
    paddingLeft: "show", 
    paddingRight: "show", 
    marginLeft: "show", 
    marginRight: "show" 
  }, speed, callback);
}

Speed/callback引数を追加すると、slideUp()およびslideDown()の完全なドロップイン置換になります。

33
vdboor

これらの行を独自のスクリプトファイルに追加することで、jQueryライブラリに新しい関数を追加できます。また、fadeSlideRight()fadeSlideLeft()を簡単に使用できます。

注:750pxのインスタンスが好きなように、アニメーションの幅を変更できます。

$.fn.fadeSlideRight = function(speed,fn) {
    return $(this).animate({
        'opacity' : 1,
        'width' : '750px'
    },speed || 400, function() {
        $.isFunction(fn) && fn.call(this);
    });
}

$.fn.fadeSlideLeft = function(speed,fn) {
    return $(this).animate({
        'opacity' : 0,
        'width' : '0px'
    },speed || 400,function() {
        $.isFunction(fn) && fn.call(this);
    });
}
9
thebhatta

また、速度を変えてコールバックを含める場合は、次のように追加します。

        jQuery.fn.extend({
            slideRightShow: function(speed,callback) {
                return this.each(function() {
                    $(this).show('slide', {direction: 'right'}, speed, callback);
                });
            },
            slideLeftHide: function(speed,callback) {
                return this.each(function() {
                    $(this).hide('slide', {direction: 'left'}, speed, callback);
                });
            },
            slideRightHide: function(speed,callback) {
                return this.each(function() {  
                    $(this).hide('slide', {direction: 'right'}, speed, callback);
                });
            },
            slideLeftShow: function(speed,callback) {
                return this.each(function() {
                    $(this).show('slide', {direction: 'left'}, speed, callback);
                });
            }
        });
5
Steve Grove