CSS布局案例 3-51 旋转太极图效果


前言

使用css3实现旋转太极图效果。


实现过程

1.步骤

太极图旋转效果实现步骤:
	  1、先制作一个黑色大圆、半个白色大圆、两个一黑一白的中圆、两个一黑一白的小圆
	  2、将几个图形组合在一块形成太极图(绝对定位实现)
	  3、整组都动起来(动画旋转实现) 

2.代码

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			*{
				margin: 0;
				padding: 0;
			}
			.circlebox{
				width: 300px;
				height: 300px;
				margin: 150px auto;
				/* 父布局设置相对布局,子元素设置绝对布局,调整位置才好用 */
				position: relative;
				/* 旋转动画效果 */
				animation: move 1.5s infinite linear;
			}
			/* 大黑圆 */
			.circleblock{
				width: 300px;
				height: 300px;
				background-color: #000000;
				border-radius: 50%;
			}
			/* 半白园 */
			.circlewhite{
				width: 150px;
				height: 300px;
				background-color: #FFFFFF;
				border-top-right-radius: 150px;
				border-bottom-right-radius: 150px;
				position: absolute;
				top: 0px;
				left: 150px;
			}
			/* 中黑圆 */
			.circlebb{
				width: 150px;
				height: 150px;
				background-color: black;
				border-radius: 50%;
				position: absolute;
				top: 0px;
				left: 75px;
			}
			/* 中白圆 */
			.circleww{
				width: 150px;
				height: 150px;
				background-color: white;
				border-radius: 50%;
				position: absolute;
				top: 150px;
				left: 75px;
			}
			/* 小白圆 */
			.circlebbl{
				width: 40px;
				height: 40px;
				background-color: white;
				border-radius: 50%;
				position: absolute;
				top: 50px;
				left: 130px;
			}
			/* 小黑圆 */
			.circlewwl{
				width: 40px;
				height: 40px;
				background-color: black;
				border-radius: 50%;
				position: absolute;
				bottom: 50px;
				left: 130px;
			}
			/* 旋转动画 */
			@keyframes move{
				from{
					transform: rotate(0deg);
				}
				to{
					transform: rotate(360deg);
				}
			}
		</style>
	</head>
	<body>
		<div class="circlebox">
			<div class="circleblock"></div>
			<div class="circlewhite"></div>
			<div class="circlebb"></div>
			<div class="circleww"></div>
			<div class="circlebbl"></div>
			<div class="circlewwl"></div>
		</div>
	</body>
</html>


3.效果

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值