当前位置:网站首页>天空云变化案例
天空云变化案例
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>
效果图

边栏推荐
- 抽象类和接口(学习笔记)
- EasyExcel综合课程实战
- IJCAI2022 Tutorial | Spoken Language Comprehension: Recent Advances and New Fields
- Detailed operator
- 一文详解:SRv6 Policy模型、算路及引流
- HCIP Day 15 Notes
- EasyExcel comprehensive course combat
- [SAM template question] P3975 [TJOI2015] string theory
- Apache Doris series: In-depth understanding of real-time analytical database Apache Doris
- uniapp折叠框二级循环
猜你喜欢
随机推荐
Summary of BFS questions
"NIO Cup" 2022 Nioke Summer Multi-School Training Camp 4 DHKLN
软考总结
Chevrolet Trailblazer, the first choice for safety and warmth for your family travel
EasyExcel comprehensive course combat
Day016 类和对象
“蔚来杯“2022牛客暑期多校训练营4 DHKLN
Manually set transaction commit in mysql
【飞控开发基础教程10】疯壳·开源编队无人机-PID 基础原理
mysql跨库关联查询(dblink)
阿里云视频点播+项目实战
Kotlin特殊类
matplotlib图表多曲线多纵轴绘制工具方法
In MySQL, the stored procedure cannot realize the problem of migrating and copying the data in the table
Soft Exam Summary
电脑快捷方式图标变白解决方案
Flex布局使用
机器学习1一回归模型(二)
Computer shortcut icon whitening solution
Debezium error series 20: task failed to create new topic. Ensure that the task is authorized to create topics





![[MySQL] DQL related operations](/img/a5/c92e0404c6a970a62595bc7a3b68cd.gif)



