セレクターでmouseleave
イベントを使用します。div
次に、私が作成したカスタムtoggleMargin
関数を適用します (目的の値の代わりに +-20px を使用しました)
<div id="div"></div>
// CUSTOM TOGGLEMARGIN FUNCTION
var t = true;
jQuery.fn.toggleMargin=function(){
var lastmargin = $(this).css('margin-top').replace("px", "");
var newMargin;
if(t){
newMargin = parseInt(lastmargin)+20;
t=false;
}
else{
newMargin = parseInt(lastmargin)-20;
t=true;
}
// Now apply the margi-top css attr
$(this).css('margin-top', newMargin );
}
// LET'S TOGGLE MARGIN ON YOUR DIV
$('#div').mouseleave(function(){
$(this).toggleMargin();
});
テスト
* 2012 年 12 月 22 日更新 *
私は提供されたコードしか持っていないので、これを試してください:
テスト2
// CUSTOM TOGGLEMARGIN FUNCTION
var t = true;
jQuery.fn.toggleMargin=function(){
var lastmargin = $(this).css('margin-top').replace("px", "");
var newMargin;
if(t){
newMargin = parseInt(lastmargin)+20;
t=false;
}
else{
newMargin = parseInt(lastmargin)-20;
t=true;
}
// Now apply the margi-top css attr
$(this).css('margin-top', newMargin );
}
$('#slidenav').mouseleave(function(){
$(this).toggleMargin();
});
$('.menu-item-40').click(function(){
$('#slidenav').toggle(function() {
$(this).animate({marginTop: '0'}, 500);
});
});