正如标题所示,我使用的是 Stellar.js。我只有一个视差元素,而且非常简单。这是一个带有背景图像的部分。背景图像设置为固定(就像文档说要避免抖动),但图像仍然抖动 - 在 Chrome 中有些抖动,在其他浏览器中非常糟糕。当我删除固定的 CSS 时它也不会改变。
这是元素:
<!--Testimonial Section-->
<section id="testimonial" data-stellar-background-ratio="0.5" data-stellar-vertical-offset="-900">
<div class="container">
<div class="row">
<div class="span3 margin-30">
<img src="img/testimonial-img.png" alt="Title">
</div>
<div class="span9">
<h2>“Lava has been an asset to our company by providing us with a cutting edge look and a web presence that shows off our work and skills.”</h2>
<div class="testimonial-source pull-right">Jeff | Ceo - Creative Company</div>
</div>
</div>
</div>
</section>
这是CSS:
#testimonial {
background: url(../img/studio-10.jpg) no-repeat center;
background-size: 2000px 2000px;
background-attachment: fixed;
padding-top: 120px;
padding-bottom: 120px;
}
很简单。有什么建议吗?