gpt4 book ai didi

css - 如何在 CSS 中使用背景图像平滑地无限放大和缩小

转载 作者:行者123 更新时间:2023-11-27 23:45:31 25 4
gpt4 key购买 nike

当涉及到动画时,背景图像不平滑(某种闪烁),我无法使其从图像中心缩放。

这是我正在尝试制作的个人网站。

    *{margin: 0;padding: 0;}

body
{
background-color: #0C090A;
background-image: url(../abstract-bg.png);
animation: zoom 30s infinite;
-webkit-animation: zoom 30s infinite;
}

@keyframes zoom {
0% {
background-size: 100%;
}
50% {
background-size: 105%;
}
100% {
background-size: 100%;
}
}

我想让背景图像(1920*1080)慢慢缩放到原始大小的 105%(或类似大小),然后再回到 100%。另外,如果可能的话,让它从中心而不是左上角开始缩放。感谢那些可以提供帮助的人。

最佳答案

是的,你当然可以 :)只需添加

  background-position:center center;
background-repeat:no-repeat;

在正文中并添加

html{
height: 100%;
}

完整的CSS代码:

* {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
background-color: #0C090A;
background-image: url(https://images.pexels.com/photos/556416/pexels-photo-556416.jpeg);
animation: zoom 30s infinite;
-webkit-animation: zoom 30s infinite;

background-position: center center;
background-repeat: no-repeat;

}

@keyframes zoom {
0% {
background-size: 100%;

}
50% {
background-size: 150%;
}
100% {
background-size: 100%;
}
}

你可以测试代码: https://playcode.io/358401

关于css - 如何在 CSS 中使用背景图像平滑地无限放大和缩小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56826905/

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