I m New to Jquery. 我想知道我们如何使用差值:0辆汽车;CSS在jquery描述中的代码。 谁能帮助我? 该法典:
<style>
#fixed-bar {
padding: 0;
background-color: black;
z-index: 100;
}
</style>
<script src= http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js ></script>
<script>
$(function () {
$("#fixed-bar")
.css({
"position": "fixed",
"width": "960px",
"margin": "0 auto",
"top": "0px",
})
.hide();
$(window).scroll(function () {
if ($(this).scrollTop() > 400) {
$( #fixed-bar ).fadeIn(200);
} else {
$( #fixed-bar ).fadeOut(200);
}
});
});
</script>
<div id= fixed-bar >
Hello
</div>
实际上,我想把酒吧集中起来。 我如何能够这样做?