我希望你能给我一个答案。 在CSS中,属性background-attachment:fixed;看起来真的很花哨,所以我的问题是我可以用来修复"文档中有一些带有文本等的div? 如果没有,如何在Typescript中解决它? 我希望你知道我的意思
//编辑: 好的,我将尝试描述它:使用属性background-attachment:fixed; div的背景是固定的,但不是它的内容,所以会出现视差效果,如下所示:w3schools.com/howto/tryhow_css_parallax_demo.htm并知道我想知道是否有可能对内容如文本等。
答案 0 :(得分:0)
你能这样试试吗?
<强> HTML 强>
<div class="fixedContainer">
This is experimental
</div>
<div class="otherContainer"> </div>
这就是你的风格
<强> CSS 强>
<style>
.fixedContainer {
background-color:#ddd;
position: fixed;
padding: 2em;
left: 50%;
top: 0%;
transform: translateX(-50%);
}
.otherContainer {
height:1000px;
background-color:#bbb;
}
</style>
信用证最初转到:此link和stackoverflow用户aaronk6以及Joseph Marikle的帖子: