gpt4 book ai didi

javascript - 固定背景的移动视差

转载 作者:行者123 更新时间:2023-12-03 09:52:31 26 4
gpt4 key购买 nike

我想知道如何在固定背景的移动设备上实现视差效果。有没有任何插件可以实现相同的效果?我可以看到后台附件已修复,无法在移动设备上运行。

例如:我需要达到与此中的效果相同的效果,http://www.celtra.com/ad-formats (移动设备中的第一个视频广告)

感谢任何帮助。提前致谢。

最佳答案

HTML

<div class="parallax-section">
<div class="parallax-child-section">
<section class="fw-main-row" id="frontlashID"></section>
</div>
</div>

CSS

            .parallax-section {
position: relative;
width: 100%;
height:700px;
}
.parallax-child-section {
clip: rect(0, auto, auto, 0);
position: absolute;
top: 0;
left: 0;
width: 100%;
height:700px;
}

#frontlashID{
position: fixed;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: translateZ(0);
will-change: transform;
z-index: 1;
}
.fw-main-row{
background-attachment:scroll;
background-image: url(###.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}

非 IOS background-attachment:fixed 可以工作,但在 IOS 设备中,background-attachment:fixed 不起作用。

但是上面的代码适用于非 ios 和 ios 设备。不需要 JS。现场工作现场:http://www.thefrontlash.com/my-oh-myla/

关于javascript - 固定背景的移动视差,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30848649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com