带有 Webkit 的背景
能够将 webkit 动画应用于整个背景图像(而不是内容)的正确代码是什么?
例如:
body {
background-color: #FFF;
background-image: url(bgsuper.jpg);
-webkit-animation-name: animate;
-webkit-animation-duration: 1.333s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-in;
}
@-webkit-keyframes animate {
from {
-webkit-transform: ease-in-out(0);
opacity: 0;
}
to {
-webkit-transform: ease-in-out(1);
opacity: 1;
} }
谢谢!
What is the correct code to be able to apply a webkit animation to the entire background image (not the content)?
EX:
body {
background-color: #FFF;
background-image: url(bgsuper.jpg);
-webkit-animation-name: animate;
-webkit-animation-duration: 1.333s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-in;
}
@-webkit-keyframes animate {
from {
-webkit-transform: ease-in-out(0);
opacity: 0;
}
to {
-webkit-transform: ease-in-out(1);
opacity: 1;
} }
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会拼凑出一个伪背景:
它的工作原理与普通背景类似,但不会平铺。如果您需要平铺,请创建一个带有
background
属性的并使用它。
HTML:
CSS:
还有,演示:http:// /jsfiddle.net/4z6TS/3/
I'd hack together a pseudo-background:
It works like a normal background, but doesn't tile. If you need tiling, make a
<div>
with abackground
property and work with that.HTML:
CSS:
And, a demo: http://jsfiddle.net/4z6TS/3/