모바일 상품상세 하단 플로팅 메뉴 제거
This commit is contained in:
@ -105,7 +105,19 @@
|
||||
.clearQueue()
|
||||
.stop()
|
||||
.css({ top: element_y+"px", display: "block" })
|
||||
.animate({ top: "-="+height }, cfg.duration, function() { $this.data("animated", false); });
|
||||
.animate({ top: "-="+height }, cfg.duration,
|
||||
function() {
|
||||
$this.data("animated", false);
|
||||
|
||||
scroll_y = $(window).scrollTop();
|
||||
w_height = $(window).height();
|
||||
var temp_y = scroll_y + w_height - height;
|
||||
|
||||
if( temp_y != element_y) {
|
||||
$this.css("top", temp_y+"px");
|
||||
}
|
||||
}
|
||||
);
|
||||
},
|
||||
show: function()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user