分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 软件开发

之前写的h5css3动画——月食

发布时间:2023-09-06 01:09责任编辑:傅花花关键词:动画

逛codepen看到一些项目的时候就很想写,这个是特别喜欢,配色太戳我了,我就自己动了一动

效果图:

<!DOCTYPE html>
<html lang="en">

<head>
???<meta charset="UTF-8">
???<meta name="viewport" content="width=device-width, initial-scale=1.0">
???<meta http-equiv="X-UA-Compatible" content="ie=edge">
???<title>c3</title>

???<style>
???????* {
???????????box-sizing: border-box;
???????}

???????body {
???????????background-color: #478a92;
???????????overflow: hidden;
???????????animation: bianse 18s infinite linear;
???????}

???????.diqiu {
???????????width: 270px;
???????????height: 270px;
???????????border-radius: 50%;
???????????background-color: #edffc0;
???????????position: absolute;
???????????left: 40%;
???????????top: 20%;
???????????/* box-shadow: 0px 0px 50px #fff; */
???????????animation: diqiude 18s infinite linear;
???????}

???????.yue {
???????????width: 270px;
???????????height: 270px;
???????????border-radius: 50%;
???????????background-color: #478a92;
???????????position: absolute;
???????????margin-top: 118px;
???????????transform: translate(10px);
???????????/* box-shadow: inset 0px 0px 50px #478a92; */
???????????animation: yundong 18s infinite linear;
???????}

???????@keyframes yundong {
???????????0% {
???????????????transform: translate(200px);
???????????????background-color: #80d0dd;
???????????}
???????????15% {
???????????????background-color: #76c4d0;
???????????}
???????????35% {
???????????????background-color: #35737a;
???????????????transform: translate(350px);
???????????}
???????????50% {
???????????????background-color: #1d565c;
???????????????transform: translate(450px);
???????????}
???????????70% {
???????????????background-color: #1d565c;
???????????????transform: translate(550px);
???????????}
???????????85% {
???????????????background-color: #76c4d0;
???????????????transform: translate(680px);
???????????}
???????????100% {
???????????????background-color: #80d0dd;
???????????????transform: translate(760px);
???????????}
???????}

???????@keyframes bianse {
???????????0% {
???????????????background-color: #80d0dd;
???????????}
???????????15% {
???????????????background-color: #76c4d0;
???????????}
???????????35% {
???????????????background-color: #35737a;
???????????}
???????????50% {
???????????????background-color: #1d565c;
???????????}
???????????70% {
???????????????background-color: #1d565c;
???????????}
???????????85% {
???????????????background-color: #76c4d0;
???????????}

???????????100% {
???????????????background-color: #80d0dd;
???????????}
???????}

???????@keyframes diqiude {
???????????0% {
???????????????background-color: #edffb9;
???????????}
???????????15% {
???????????????background-color: #edffba;
???????????}
???????????35% {
???????????????background-color: #edffc3;
???????????}
???????????50% {
???????????????background-color: #edffc3;
???????????????box-shadow: 0px 0px 30px #EEE0E5;
???????????}
???????????85% {
???????????????background-color: #edffba;
???????????????box-shadow: 0px 0px 10px #EEE0E5;
???????????}

???????????100% {
???????????????background-color: #edffb9;
???????????????box-shadow: 0px 0px 0px;
???????????}
???????}
???</style>

???<body>
???????<div class="diqiu">

???????</div>

???????<div class="yue"></div>

???</body>

</html>

数值是真的很难调好。。。强迫症恨不得剁手→_→在此感谢codepen这个调色达人,好喜欢你的颜色,导致我写的时候就直接用了!3Q

之前写的h5css3动画——月食

原文地址:http://www.cnblogs.com/yishichangan925/p/7486145.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved