css 使用CSS关键帧动画背景图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 使用CSS关键帧动画背景图像相关的知识,希望对你有一定的参考价值。

/*
background image css keyframe animation
note => -2122 is the width of my background image
*/

figure {
	width: 100%;
	margin: 0;
	padding: 350px 0 0 0;
	position: absolute;
	left: 0;
	bottom: 0px;
	overflow: hidden;
	background:url(images/clouds_tile.jpg);
	animation_name: clouds_tile 75s linear infinite;
	
}

@keyframes clouds_anima {
	
	0% {
		background-position: 0 0;
	}
	
	100% {
		background-position: -2122 0;   //2122 is the fullwidth of img
	}
	
	
	
}

以上是关于css 使用CSS关键帧动画背景图像的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 css 关键帧动画保持元素动画

在背景图像动画之后创建背景颜色 CSS3 动画

CSS背景颜色关键帧动画

如何使用 css3 动画更改背景位置?

在 iOS 设备上使用后退按钮时未触发 CSS 关键帧动画

在未知关键帧上平滑停止 CSS 旋转动画