CSS3动画-图片在框中上下移动

CSS3动画-图片在框中上下移动_第1张图片 

         
			logo
		
.cgzslj {
	background: #142641;
	width: 238px;
	height: 127px;
	position: fixed;
	bottom: 400px;
	left: 1px;
	animation: bk 5s linear;
}

@keyframes bk {
	0% {
		opacity: 0.1;
	}
	100% {
		opacity: 1;
	}
}

.imga {
	animation: gt 5s infinite linear;
}

@keyframes gt {
	0% {
		margin-top: 5px;
		/*margin-left: 0px;*/
	}
	25% {
		margin-top: 40px;
		/*margin-left: 10px;*/
	}
	50% {
		margin-top: 90px;
		/*margin-left: 20px;*/
	}
	75% {
		margin-top: 40px;
		/*margin-left: 10px;*/
	}
	100% {
		margin-top: 5px;
		/*margin-left: 0px;*/
	}
}

 

你可能感兴趣的:(CSS3动画)