第一次滚动时,视差滚动文本跳到顶部

时间:2017-07-05 07:22:07

标签: javascript html css

如果属性为position:fixed; top:500px or 40%并且不可见,则文本会在第一次滚动时跳转到顶部,直到首次滚动,如果属性为margin-top:500px;

指向该网站的链接:There is some information in this pull request (GEOMETRY这个词)

它的代码:

#seriq {
color:white;
z-index:9999;
position:absolute;
font-family:futuraat;
font-size:5vw;  
padding:0px;
top:70%;
width:100%;
text-align:center;
}

我希望从一开始就让它可见,而不是挺举到顶端。

1 个答案:

答案 0 :(得分:0)

您可以使用position:sticky;元素在滚动时粘贴到特定位置,并且可以通过

显示

https://developer.mozilla.org/en/docs/Web/CSS/position