当前位置:网站首页>天空云变化案例
天空云变化案例
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>
效果图
边栏推荐
猜你喜欢
MySQL进阶sql性能分析
抽象类和接口(学习笔记)
mysql中关于存储过程无法实现迁移复制表中数据问题
递增三元组
Compressing Deep Graph Neural Networks via Adversarial Knowledge Distillation
uniapp develops WeChat applet - soft exam brushing applet
align-content、justify-content、align-items三个属性的作用和效果
[MySQL] Related operations on databases and tables in MySQL
$\text{ARC 145}$
Apache Doris series: detailed steps for installation and deployment
随机推荐
2022 Nioke Summer Multi-School Training Camp 1 J Serval and Essay
HCIP第十六天笔记
HCIP Day 15 Notes
tcp协议传输中的粘包问题
第一节 zadig 入门
360核心安全大脑3.0正式发布,构建政企用户的“能力中枢平台”
Data cleaning - ingest using es
[0x800706D9] solution appears in Microsoft Store
实验7(MPLS实验)
uniapp折叠框二级循环
PS Basic Learning (1)
[MySQL] Related operations on databases and tables in MySQL
ZZULIOJ:1119: 数列有序
[SAM模板题] P3975 [TJOI2015] 弦论
#yyds干货盘点# 面试必刷TOP101:判断链表中是否有环
flex布局父项常见属性flex-wrap
2021GDCPC Guangdong University Student Programming Competition B.Byfibonacci
Chevrolet Trailblazer, the first choice for safety and warmth for your family travel
reindex win10
mysql锁机制