作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当涉及到动画时,背景图像不平滑(某种闪烁),我无法使其从图像中心缩放。
这是我正在尝试制作的个人网站。
*{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/
我是一名优秀的程序员,十分优秀!