#学习笔记#(41)CSS3画心

原理,两个圆与正方形组合而成,正方形边长与圆的直径相等

代码如下

<html>
	<head>
		<meta charset="utf-8" />
		<style>
		.box{
			width:200px;
			height:200px;
			margin:50px auto;
			animation:size 1s infinite;
			animation-direction:alternate;
			transition:1s all;
		}
		.round1{
			width:100px;
			height:100px;
			border-radius:50%;
			background-color:red;
			float:left;
			position:absolute;
		}
		.round2{
			width:100px;
			height:100px;
			border-radius:50%;
			background-color:red;
			float:left;
			position:absolute;
			margin-left:80px;
		}
		.rec{
			width:100px;
			height:100px;
			background-color:red;
			float:left;
			position:absolute;
			margin-top:40px;
			margin-left:40px;
			transform:rotateZ(45deg);
		}
		@keyframes size{
			0%{
				transform:scale(0.6);
			}
			100%{
				transform:scale(1);
			}
		}
		</style>
	</head>
	<body>
		<div class="box">
			<div class="round1"></div>
			<div class="round2"></div>
			<div class="rec"></div>
		</div>
	</body>
</html>


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值