我正在修復圖像my site產品頁面。圖像應根據選項進行修正。添加以下代碼,但圖像浮在內容上面也..如何修復圖片的限制?
var images = jQuery('.single-product .images');
jQuery.fn.followTo = function (pos) {
var $this = this,
$window = jQuery(window);
$window.scroll(function (e) {
if ($window.scrollTop() > pos) {
$this.css({
position: 'absolute',
top: pos - $this.height()
});
} else {
$this.css({
position: 'fixed',
top: 'auto'
});
}
});
};
images.followTo(jQuery('#myTab').offset().top - images.height());
我還與0,100試圖在「自動」不同的值,但沒有工作 請幫我解決這個問題?謝謝!
更新
我想修復圖像,並與選項中滾動。但不需要在內容上方滾動。 – Subha 2014-09-03 07:41:40