【WEB项目】旋转太极

样式分析

在这里插入图片描述
可以看出,要想实现着这种效果的话。我们可以使用嵌套div标签
在这里插入图片描述

框架分析

通过三层布局堆叠就可以实现想基本的布局框架,这三层分别为:最外层的大圆,内层中型圆和最里面的小圆组成

代码分析

通过div标签嵌套使用就可以实现其原始框架,具体代码如下

<html>
	...
	...
	<body>
		<div class="box">
			<!-- 最外层的圆 -->
			<div class="big-circle">
				<!-- 中型上面的圆 -->
				<div class="circle" id="top-circle">
					<!-- 上面的最小圆 -->
					<div class="small-circle" id="top-small-circle">
					</div>
				</div>
				<!-- 中型下面的圆 -->
				<div class="circle" id="bottom-circle">
					<!-- 下面的最小圆 -->
					<div class="small-circle" id="bottom-small-circle">
					</div>
				</div>
			</div>
		</div>
	</body>
</html>

CSS分析

做完上面的代码,本项目的HTML代码的div标签嵌套框架已经实现了,但是我们想要实现太极效果的话,还得在CSS部分进行继续编辑,具体代码如下

 /*去除所有元素的默认边距*/
 * {
 	padding: 0;
 	margin: 0;
 }
 
 /*定义内容区域的属性*/
 .box {
 	height: 400px;
 	width: 400px;
 	margin: 0 auto;
 }
 
 /*定义最大圆形的属性*/
 .big-circle{
 	border-radius: 50%;
 	/*给大圆添加线性背景*/
 	background: linear-gradient(90deg, #000 50%, #fff 50%);
 	box-shadow: 0 0 10px #000;
 }
 
 /**中型圆**/
 .circle {
 	height: 120px;
 	width: 200px;
 	margin: 0 auto;
 	padding-top: 80px;
 	border-radius: 50%;
 }
 
 /**上面的中型圆**/
 #top-circle {
 	background-color: #000;
 }
 
 /**下面的中型圆**/
 #bottom-circle {
 	margin-top: 0px;
 	background-color: #fff;
 }
 
 /**小圆类**/
 .small-circle {
 	height: 40px;
 	width: 40px;
 	margin: 0 auto;
 	border-radius: 50%;
 }
 
 /**上面的小圆**/
 #top-small-circle {
 	background-color: #fff;
 }
 
 /**下面的小圆**/
 #bottom-small-circle {
 	background-color: #000;
 }

动画实现

完成以上几个步骤就可以实现一个静态太极图形了,但是我们还可以给太极加上动画效果,我们要想使得整个太极旋转,就应该使最大的圆进行旋转

添加旋转动画

/*添加CSS3动画*/
@-webkit-keyframes taiji {
	/*动画开始前旋转角度为0度*/
	0% {
		transform: rotate(0deg);
	}
	/*动画完成后的旋转角度为360度*/
	100% {
		transform: rotate(360deg);
	}
}

在大圆中使用旋转动画

/*在大圆中使用动画*/
animation:taiji 2s linear infinite;

这样我们就可以实现旋转太极了!

以下是全部代码

<html>
	<head>
		<style>
			/*去除所有元素的默认边距*/
			* {
				padding: 0;
				margin: 0;
			}
	
			/*定义内容区域的属性*/
			.box {
				height: 400px;
				width: 400px;
				margin: 0 auto;
			}

			/*定义最大圆形的属性*/
			.big-circle{
                border-radius: 50%;
                /*给大圆添加线性背景*/
                background: linear-gradient(90deg, #000 50%, #fff 50%);
                box-shadow: 0 0 10px #000;
                /*在大圆中使用动画*/
                animation:taiji 2s linear infinite;
      		}

            /**中型圆**/
            .circle {
                height: 120px;
                width: 200px;
                margin: 0 auto;
                padding-top: 80px;
                border-radius: 50%;
            }

            /**上面的中型圆**/
            #top-circle {
                background-color: #000;
            }

            /**下面的中型圆**/
            #bottom-circle {
                margin-top: 0px;
                background-color: #fff;
            }

            /**小圆类**/
            .small-circle {
                height: 40px;
                width: 40px;
                margin: 0 auto;
                border-radius: 50%;
            }

            /**上面的小圆**/
            #top-small-circle {
                background-color: #fff;
            }

            /**下面的小圆**/
            #bottom-small-circle {
                background-color: #000;
            }
			/*添加CSS3动画*/
            @-webkit-keyframes taiji {
                /*动画开始前旋转角度为0度*/
                0% {
                    transform: rotate(0deg);
                }
                /*动画完成后的旋转角度为360度*/
                100% {
                    transform: rotate(360deg);
                }
            }
		</style>
	</head>
<body>
	<div class="box">
		<!-- 最外层的圆 -->
		<div class="big-circle">
			<!-- 中型上面的圆 -->
			<div class="circle" id="top-circle">
				<!-- 上面的最小圆 -->
				<div class="small-circle" id="top-small-circle">
				</div>
			</div>
			<!-- 中型下面的圆 -->
			<div class="circle" id="bottom-circle">
				<!-- 下面的最小圆 -->
				<div class="small-circle" id="bottom-small-circle">
				</div>
			</div>
		</div>
	</div>
</body>
  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值