根据滚动更改位置

时间:2016-08-02 13:17:23

标签: jquery html css scroll position

我想根据我的卷轴更改位置。 因为图片说千言万语,这就是我想要的:

enter image description here

这是我的代码: https://jsfiddle.net/njz87Lth/1/

html:

body {
  text-align:center;
}

h1 {
  left: 0;
  line-height:2;
  right:0;
  width:600px;
  margin-left: auto;
  margin-right: auto;
  position:fixed;
}

.one, .two {
  width:600px;
  position: absolute;
  left: 0;
  right:0;
  margin-left: auto;
  margin-right: auto;
}

.one {
    top:100px;
    height:300px;
    background:grey;
}

.two {
    height:800px;
    background:pink;
    margin-top:30px;
    top:400px;
}

css:

FormsAuthentication.SignOut()

1 个答案:

答案 0 :(得分:0)

使用jQuery试试这个。

$(window).scroll(function () { 
     $(".one").offset({ left: left, top: top});

});

根据您的需要提供offset值。