动态天气图标

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


动态天气小图标

一个会动的天气图标
在这里插入图片描述

一、先看看效果

如上图

二、代码

1.html部分

代码如下:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<link rel="stylesheet" href="css/weathericon.css">
	</head>
	<body>
		<div class="container">
			<!-- 晴天 -->
			<div class="sunny">
				<div class="sun">
					<div class="rays"></div>
				</div>
			</div>
			<!-- 雨天 -->
			<div class="rainy">
				<div class="cloud"></div>
				<div class="rain"></div>
			</div>
			<!-- 多云 -->
			<div class="cloudy">
				<div class="cloud"></div>
				<div class="cloud"></div>
			</div>
		</div>
	</body>
</html>

2.css部分

代码如下(示例):

*{
	margin: 0;
	padding: 0;
}
body{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	/* 自定义属性 */
	--bg--color:#161616;
	background-color: var(--bg--color);
}
.container{
	width: 700px;
	display: flex;
	justify-content: space-around;
}
.sunny{
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sunny .sun{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--bg--color);
	box-shadow: 0 0 0 6px orange;
	animation: sunny 10s linear infinite;
}
.sunny .sun .rays{
	position: absolute;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 18px;
	background-color: yellow;
	box-shadow: 0 86px yellow;
	border-radius: 4px;
}
.sunny .sun .rays::before,
.sunny .sun .rays::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 18px;
	background-color: yellow;
	box-shadow: 0 86px yellow;
	border-radius: 4px;
	transform: rotate(60deg);
	transform-origin: 50% 52px;
}
.sunny .sun .rays::before{
	transform: rotate(-60deg);
}

.rainy{
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.rainy .cloud{
	width: 60px;
	height: 60px;
	background-color: var(--bg--color);
	border-radius: 50%;
	/* 画云朵 */
	box-shadow: -35px 11px 0 -11px var(--bg--color),
		33px 15px 0 -15px var(--bg--color),
		0 0 0 6px lightgray,
		-35px 11px 0 -5px lightgray,
		33px 15px 0 -9px lightgray;	
}
.rainy .cloud::after{
	position: absolute;
	bottom: 20px;
	left: 12px;
	content: '';
	width: 73px;
	height: 16px;
	background-color: var(--bg--color);
	box-shadow: 0 6px 0 0 lightgray;
}
.rainy .rain{
	position: absolute;
	top: 55%;
	left: 20%;
	width: 60px;
	height: 60px;
	background-color: var(--bg--color);
}
.rainy .rain::after{
	content: '';
	position: absolute;
	top: 20%;
	left: 50%;
	width: 18px;
	height: 18px;
	background-color: #0cf;
	border-radius: 100% 0 60% 50%/60% 0 100% 50%;
	/* 画雨点 */
	box-shadow: 10px 14px 0 -2px rgba(255, 255, 255, 0.2),
		-14px 18px 0 -2px rgba(255, 255, 255, 0.2),
		-22px -2px 0 rgba(255, 255, 255, 0.2);
		transform: rotate(-28deg);
		margin: 0 0 0 -5px;
		animation: rainy 2s linear infinite;
}
.cloudy{
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cloudy .cloud{
	position: absolute;
	z-index: 1;
	width: 60px;
	height: 60px;
	background-color: var(--bg--color);
	border-radius: 50%;
	/* 画云朵 */
	box-shadow: -35px 11px 0 -11px var(--bg--color),
		33px 15px 0 -15px var(--bg--color),
		0 0 0 6px lightgray,
		-35px 11px 0 -5px lightgray,
		33px 15px 0 -9px lightgray;
}
.cloudy .cloud::after{
	position: absolute;
	bottom: 0px;
	left: -8px;
	content: '';
	width: 73px;
	height: 16px;
	background-color: var(--bg--color);
	box-shadow: 0 6px 0 0 lightgray;
}
.cloudy .cloud:nth-child(2){
	z-index: 0;
	background-color: #fff;
	/* 画小云朵 */
	box-shadow: -35px 11px 0 -11px #fff,
		33px 15px 0 -15px #fff,
		0 0 0 6px #fff,
		-35px 11px 0 -5px #fff,
		33px 15px 0 -9px #fff;
		opacity: 0.3;
		transform: scale(0.5) translate(96px,-48px);
		animation: cloudy 3s linear infinite;
}
.cloudy .cloud:nth-child(2)::after{
	background-color: #fff;
}
/* 动画 */
/* 太阳 */
@keyframes sunny{
	0%{
		transform: rotate(0);
	}
	100%{
		transform: rotate(360deg);
	}
}
/* 动画雨滴 */
@keyframes rainy{
	0%{
		background-color: #0cf;
		box-shadow: 10px 14px 0 -2px rgba(255, 255, 255, 0.2),
		-14px 18px 0 -2px rgba(255, 255, 255, 0.2),
		-22px -2px 0 rgba(255, 255, 255, 0.2);
	}
	25%{
		box-shadow: 10px 14px 0 -2px rgba(255, 255, 255, 0.2),
		-14px 18px 0 -2px #0cf,
		-22px -2px 0 rgba(255, 255, 255, 0.2);
	}
	50%{
		background-color: rgba(255, 255, 255, 0.2);
		box-shadow: 10px 14px 0 -2px #0cf,
		-14px 18px 0 -2px rgba(255, 255, 255, 0.2),
		-22px -2px 0 rgba(255, 255, 255, 0.2);
	}
	100%{
		box-shadow: 10px 14px 0 -2px rgba(255, 255, 255, 0.2),
		-14px 18px 0 -2px rgba(255, 255, 255, 0.2),
		-22px -2px 0 #0cf;
	}
}
@keyframes cloudy{
	0%{
		opacity: 0;
	}
	5%{
		opacity: 0.3;
	}
	100%{
		opacity: 0;
		transform: scale(0.5) translate(-200%,-48px);
	}
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值