Html/CSS动画效果个人练习(1)

CSS动画效果个人练习第四天

Html源代码

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
	<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>comic1</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>

<body>
	<div class="font-box">
	    <span>C</span>
		<span>S</span>
		<span>S</span>
		<span></span>
		<span></span>
		<span></span>
		<span></span>
		<span></span>
		<span></span>
		<span></span>
	</div>
</body>
</html>

CSS源代码

*{
	padding: 0;
	margin: 0;
}
html{
	height: 100%;
}
body{
	background-color:black;
}
.font-box{
	text-align: center;
	padding: 200px 0;
}
.font-box span{
	color: #fff;
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 100px;
	font-weight: bold;
	text-shadow: -0.05em 0 cyan,0.05em 0 red;
	position: relative;
	display: inline-block;
}
@keyframes text-jump {
  0% {
    top: 0px;
  }
  50% {
    top: -150px;
  }
  80% {
    top: 50px;
  }
  100% {
    top: 0px;
  }
}

@keyframes text-rotate{
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.font-box span:nth-child(1){
	animation: text-jump 0.8s ease-in-out 0s ,text-rotate 0.8s ease 0s;
}
.font-box span:nth-child(2){
	animation: text-jump 0.8s ease-in-out 0.2s ,text-rotate 0.8s ease 0.2s;
}
.font-box span:nth-child(3){
	animation: text-jump 0.8s ease-in-out 0.4s ,text-rotate 0.8s ease 0.4s;
}
.font-box span:nth-child(4){
	animation: text-jump 0.8s ease-in-out 0.6s ,text-rotate 0.8s ease 0.6s;
}
.font-box span:nth-child(5){
	animation: text-jump 0.8s ease-in-out 0.8s ,text-rotate 0.8s ease 0.8s;
}
.font-box span:nth-child(6){
	animation: text-jump 0.8s ease-in-out 1.0s ,text-rotate 0.8s ease 1.0s;
}
.font-box span:nth-child(7){
	animation: text-jump 0.8s ease-in-out 1.2s ,text-rotate 0.8s ease 1.2s;
}
.font-box span:nth-child(8){
	animation: text-jump 0.8s ease-in-out 1.4s ,text-rotate 0.8s ease 1.4s;
}
.font-box span:nth-child(9){
	animation: text-jump 0.8s ease-in-out 1.6s ,text-rotate 0.8s ease 1.6s;
}
.font-box span:nth-child(10){
	animation: text-jump 0.8s ease-in-out 1.8s ,text-rotate 0.8s ease 1.8s;
}

效果图片在这里插入图片描述

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值