css 背景动画渐变

Posted

tags:

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

	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

以上是关于css 背景动画渐变的主要内容,如果未能解决你的问题,请参考以下文章

css 背景动画渐变

css 动画的渐变背景

巧用渐变实现高级感拉满的背景光动画

带有渐变的CSS3动画[重复]

带有背景渐变的 CSS 过渡

web实现太极图背景色线性渐变旋转动画htmlcssafterbeforelineargradienttransformrotateanimation