当前位置:网站首页>天空云变化案例
天空云变化案例
2022-07-30 23:33:00 【qq_48639265】
运用css设置云朵从白天渐渐到晚上再到白天的变化
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style> * {
padding: 0; margin: 0; } /* 设置背景样式 */ .bg {
height: 100vh; background-color: skyblue; animation: sky 10s linear infinite; } /* 设置云彩样式 */ .bg .cloud_one{
width: 300%; height: 100%; background: url('../images/cloud_one.png') repeat-x; position: fixed; top: 0; left:0; animation: cloud 20s linear infinite; } .bg .cloud_two{
width: 300%; height: 100%; background: url('../images/cloud_two.png') repeat-x; position: fixed; top: 0; left:0; animation: cloud 40s linear infinite; } .bg .cloud_three{
width: 300%; height: 100%; background: url('../images/cloud_three.png') repeat-x; position: fixed; top: 0; left:0; animation: cloud 60s linear infinite; } /* 设置天空轮播 */ @keyframes sky {
0% {
background-color: skyblue; } 50% {
background-color: #000; } 100% {
background-color: skyblue; } } /* 设置云彩轮播 */ @keyframes cloud {
from{
left: 0; } to{
left: -200%; } } </style>
</head>
<body>
<div class="bg">
<div class="cloud_one"></div>
<div class="cloud_two"></div>
<div class="cloud_three"></div>
</div>
</body>
</html>
效果图
边栏推荐
- 2021GDCPC广东省大学生程序设计竞赛 B.Byfibonacci
- # # yyds dry goods inventory interview will brush TOP101: to determine whether there is a part of the list
- 【MySQL】DQL相关操作
- “蔚来杯“2022牛客暑期多校训练营4 L.Black Hole 垃圾计算几何
- el-upload添加请求头
- Go语学习笔记 - gorm使用 - 事务操作 Web框架Gin(十一)
- image里的mode属性
- The difference between ?? and ??= and ?. and || in JS
- "Wei cup" school more than 2022 cattle summer camp 4 Nancy (polocy) pelosi article variance law of Arts
- Lambda表达式
猜你喜欢
随机推荐
$\text{ARC 145}$
tcp协议传输中的粘包问题
10 个关于自动化发布管理的好处
mysql跨库关联查询(dblink)
Android安全性优化——APP加固
Computer shortcut icon whitening solution
IJCAI2022教程 | 口语语言理解:最新进展和新领域
MySQL连接时出现2003错误
Go语学习笔记 - gorm使用 - gorm处理错误 Web框架Gin(十)
Reverse linked list - head insertion inversion method
EasyExcel综合课程实战
Apache Doris系列之:安装与部署详细步骤
微软商店出现【0x800706D9】解决方法
“蔚来杯“2022牛客暑期多校训练营4 DHKLN
el-upload添加请求头
Calico 网络通信原理揭秘
2022中国物流产业大会暨企业家高峰论坛在杭州举办!
pytorch的安装注意事项
"Code execution cannot continue because MSVCP140.dll was not found, reinstalling the program may resolve the problem, etc." Solutions
Manually set transaction commit in mysql