发布网友 发布时间:2022-05-13 20:03
共3个回答
懂视网 时间:2022-05-14 05:45
这篇文章主要介绍了关于利用CSS3实现地球自转,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下CSS3实现地球自转,不可思议啊,不过确实可以实现,不信的朋友可以祥看本文,附送源码
最终成果:
素材:两张图片,
espaco.jpg(1600*1000)
terra.jpg(900*450)
第一步,形成静态图(地球背景全屏,地球大小为450px*450px,地球位置为上下左右居中):
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Planet Earth</title> <style type="text/css"> body{ background: url(espaco.jpg) no-repeat 0 0; background-size: 100%; /* 背景图片被拉伸为全屏 */ } .earth{ background: url(terra.jpg) repeat-x 0 0; /* 背景图片在水平方向复制*/ /*下面的属性可使地球位于浏览器窗口垂直水平居中国*/ height: 450px; left: 50%; margin: -225px 0 0 -225px; position: absolute; top: 50%; width: 450px; } </style> </head> <body> <p class="earth"></p> </body> </html>
效果图:
第二步,形成圆形地球效果,同时添加月晕效果:
/*在earth中添加以下属性样式*/ border: 1px solid rgba(26,18,101,0.3); /*形成圆边效果,视觉效果更好,不用也行*/ border-radius: 225px; /*使地球形成圆形效果*/ box-shadow: -8px 0 25px rgba(256,256,256,0.3), -1px -2px 14px rgba(256,256,256,0.5) inset; /*形成圆形外面的模糊月晕效果*/
效果图:
第三步,形成白天黑夜效果:
.earth:before{ content: ""; border-radius: 225px; box-shadow: -150px -6px 25px rgba(0,0,0,0.7) inset;/*弧形阴影,形成白天黑夜效果*/ left: 0; position:absolute; top: 0; height: 450px; width: 450px; }
效果图:
最后一步,形成地球自转效果:
@-webkit-keyframes loop { % { background-position: 0 0; } %{ background-position: -900px 0;} /* 世界地图的大小为900*450,所以background-position-x: -900px */ } /*在earth中添加如下样式*/ -webkit-animation: loop 20s linear infinite; /* 这的时间是可以设置的,如果你想地球转快一点的话,时间改小点就行了,比如10s */
热心网友 时间:2022-05-14 02:53
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>旋转</title>
<style>
* {margin:0; padding:0; border:0;}
div {width:200px; height:200px; margin-left:100px; margin-top:-100px;}
img {width:200px; height:200px; border-radius:100px; animation:myfirst 5s linear infinite; -webkit-animation:myfirst 5s linear infinite; animation-play-state:running; -webkit-animation-play-state:running;}
img:hover {animation-play-state:paused; -webkit-animation-play-state:paused;}
@keyframes myfirst {0% {transform:rotate(0deg);} 100% {transform:rotate(360deg);}}
@-webkit-keyframes myfirst {0% {transform:rotate(0deg);} 100% {transform:rotate(360deg);}}
</style>
</head>
<body>
<p style="margin-top:100px"></p>
<div><img src="163146_vN8g_574908.jpg"/><div>
</body>
</html>
需要的图片
热心网友 时间:2022-05-14 04:11
css3的旋转属性和css3的自定义动画,信息量太大,无法一一列举,可以百度看教程."老师领进门,修行在个人"望采纳