当前位置:   article > 正文

html网页效果跳动的心_html心在动

html心在动

跳动的心代码

用到了css的轮廓,动画效果,

<!DOCTYPE html>
 <html lang="en">
 <head>
 	<meta charset="UTF-8">
 	<title>跳动的心</title>
 	<style>
 	body{
 		background:rgba(250,60,60,0.5);
 	}
	div{
		width: 200px;
		height: 200px;
		background-color: red;
		margin: 300px auto;
		transform: rotate(45deg);
		opacity: 0.5;
		filter: drop-shadow(0px 0px 30px red);
		box-shadow: 0px 0px 30px red;
		animation: m 0.8s linear infinite;
	}
	@keyframes m{
		50%{transform: rotate(45deg) scale(0.8,0.8);}
	
		80%{transform: rotate(45deg) scale(0.7,0.7);}
	}
	div:after{
		content: "";
		width:200px;
		height: 200px;
		background-color:red;
		position: relative;
		display: block;
		border-radius: 50%;
		top: -300px;
		left: 0px;
	}
	div:before{
		content: "";
		width:200px;
		height: 200px;
		background-color:red;
		position: relative;
		display: block;
		border-radius: 50%;
		top: 0px;
		left: -100px;
	}
	p{
		font-family:楷体;
	}
	</style>
 </head>
 <body>
 	<p>世人谓我恋长安,其实只恋长安某</p>
	<div></div>
 </body>
 </html>
	
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/603480
推荐阅读
相关标签
  

闽ICP备14008679号