web前端开发避免不了的一些固定位置特效,自己写了一个留着备用,兼容id6-10


function fixed($id, $top) {
	$top = $top == "" ? 0 : $top;
	if ($.browser.msie && $.browser.version == "6.0") {
		$($id).css( {
			"position" : "absolute"
		});
		$(window).scroll(function() {
			var $kfh = document.documentElement.scrollTop + $top + "px";
			$($id).css("top", $kfh)
		})
	} else {
		$($id).css( {
			"position" : "fixed"
		})
	}
}


标签: javascript特效, 学习笔记, js+css特效, jquery插件

添加新评论