gpt4 book ai didi

html - GIF 不是全屏浏览器

转载 作者:行者123 更新时间:2023-11-28 14:06:37 25 4
gpt4 key购买 nike

我在我的 React 应用程序的背景中显示一个 gif 并且需要它占据整个屏幕,无论屏幕尺寸、浏览器等如何。它在 chrome 上运行完美,但在 safari 上却不行(切断中间屏幕).这是一个相当大的格式问题,因为这个版本目前正在生产中。如何让 gif 格式正确?

CSS:

.myGradientBackground {
background-image: url('my_gif.gif');
background-size:100%;
background-repeat: no-repeat;
background-attachment: fixed;
height:100%;
width:100%;
}

最佳答案

我觉得这行得通

.myGradientBackground {
background: url('my_gif.gif') no-repeat center center fixed;
background-size: cover;
}

关于html - GIF 不是全屏浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57163746/

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