一款纯css3制作的2015年元旦雪人动画特效教程
建站知识 2021-07-03 08:15www.168986.cn长沙网站建设
在圣诞节或者是元旦的时候,爱编程长沙网络推广给大家分享一款纯css3实现的雪人动画特效。该实例实现一个雪人跳动的特效,效果图如下
实现的代码。
html代码
XML/HTML Code复制内容到剪贴板
- <span class="text">lolwut<small>-@rsmswlln</small></span>
- <div class="body">
- <div class="hat">
- <div class="ribbon">
- </div>
- </div>
- <div class="face">
- </div>
- <div class="scarf">
- </div>
- <div class="right-arm">
- <div class="hand">
- </div>
- </div>
- <div class="left-arm">
- <div class="hand">
- </div>
- </div>
- </div>
- <div class="puddle">
- </div>
css代码
CSS Code复制内容到剪贴板
- body {
- background: #c0392b;
- }
- .body {
- width: 250px;
- height: 250px;
- background: #ffffff;
- border-radius: 50%;
- box-shadow: inset -20px -5px 35px rgba(0, 0, 0, 0.2);
- position: absolute;
- rightright: 0;
- left: 0;
- margin: 300px auto;
- animation: jump 1s infinite;
- }
- .body:before {
- z-index: 2;
- content: "";
- width: 180px;
- height: 180px;
- background: #ffffff;
- border-radius: 50%;
- box-shadow: inset -10px -5px 10px rgba(0, 0, 0, 0.2);
- position: relative;
- display: inline-block;
- : -120px;
- left: 25px;
- }
- .body:after {
- content: "";
- width: 140px;
- height: 140px;
- background: #ffffff;
- border-radius: 50%;
- box-shadow: inset -10px -5px 10px rgba(0, 0, 0, 0.2);
- position: relative;
- display: inline-block;
- : -400px;
- left: 20px;
- }
- .body > .hat {
- width: 200px;
- height: 15px;
- border-radius: 50%;
- background-color: #111111;
- position: absolute;
- z-index: 4;
- : -200px;
- left: -15px;
- }
- .body > .hat:before {
- content: "";
- width: 100px;
- height: 65px;
- background-color: #111111;
- display: inline-block;
- position: relative;
- : -55px;
- left: 51px;
- }
- .body > .hat:after {
- z-index: 5;
- content: "";
- display: inline-block;
- position: relative;
- : -145px;
- left: 51px;
- width: 100px;
- height: 5px;
- border-radius: 50%;
- background-color: #2b2b2b;
- }
- .body > .hat > .ribbon {
- height: 10px;
- width: 100px;
- background-color: #6d2018;
- position: relative;
- : -90px;
- left: 51px;
- z-index: 6;
- }
- .body > .face {
- z-index: 3;
- width: 12px;
- height: 12px;
- background-color: #2c3e50;
- border-radius: 50%;
- position: absolute;
- : -170px;
- left: 38px;
- }
- .body > .face:before {
- content: "";
- background-color: transparent;
- display: inline-block;
- position: relative;
- : 30px;
- left: -45px;
- transform: rotate(-15deg);
- border-: 12px solid transparent;
- border-bottom: 12px solid transparent;
- border-right: 40px solid #e67e22;
- }
- .body > .face:after {
- content: "";
- background-color: transparent;
- display: inline-block;
- position: relative;
- : 0;
- left: -46px;
- transform: rotate(-15deg);
- border-: 12px solid transparent;
- border-right: 40px solid #bf6516;
- }
- .body > .scarf {
- z-index: 3;
- width: 150px;
- height: 30px;
- background-color: #2980b9;
- position: absolute;
- : -110px;
- left: 25px;
- transform: rotate(-15deg);
- border-radius: 20%;
- }
- .body > .scarf:after {
- content: "";
- width: 75px;
- height: 30px;
- background-color: #2980b9;
- display: inline-block;
- position: relative;
- : 16px;
- left: 80px;
- transform: rotate(85deg);
- border-radius: 20%;
- }
- .body > .left-arm,
- .body .rightright-arm {
- z-index: 7;
- width: 100px;
- height: 6px;
- background-color: #825a2c;
- position: absolute;
- : 10px;
- left: -20px;
- transform: rotate(-15deg);
- animation: rub-rightright 0.5s infinite;
- }
- .body > .left-arm > .hand,
- .body .rightright-arm > .hand {
- width: 25px;
- height: 6px;
- background-color: #825a2c;
- position: absolute;
- : -32px;
- left: -60px;
- transform: rotate(75deg);
- }
- .body > .left-arm:after,
- .body .rightright-arm:after {
- content: "";
- width: 75px;
- height: 6px;
- background-color: #a87439;
- display: inline-block;
- position: relative;
- : -24px;
- left: -70px;
- transform: rotate(25deg);
- }
- .body > .left-arm.left-arm,
- .body .rightright-arm.left-arm {
- background-color: #a87439;
- animation: rub-left 0.5s infinite;
- : -15px;
- z-index: 1;
- }
- .body > .left-arm.left-arm > .hand,
- .body .rightright-arm.left-arm > .hand {
- background-color: #a87439;
- : -14px;
- transform: rotate(45deg);
- }
- .body > .left-arm.left-arm:after,
- .body .rightright-arm.left-arm:after {
- background-color: #825a2c;
- transform: rotate(5deg);
- : -12px;
- left: -74px;
- }
- .puddle {
- z-index: -1;
- width: 200px;
- height: 100px;
- background: #2980b9;
- border-radius: 50%;
- position: absolute;
- rightright: 0;
- left: -50px;
- margin: 500px auto;
- }
- .puddle:after {
- content: "";
- width: 120px;
- height: 80px;
- display: inline-block;
- border-radius: 50%;
- left: 150px;
- position: relative;
- background-color: #2980b9;
- }
- .text {
- text-align: center;
- font-family: 'Lobster', cursive;
- font-size: 74px;
- display: inline-block;
- transform: rotate(-15deg);
- position: absolute;
- margin: 50px 30px;
- color: #ffffff;
- text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
- }
- .text > small {
- font-size: 20px;
- display: block;
- }
- @keyframes rub-left {
- 0% {
- margin-left: 0px;
- margin-: 0;
- }
- 50% {
- margin-left: 5px;
- margin-: 1px;
- }
- 100% {
- margin-left: 0px;
- margin-: 0;
- }
- }
- @keyframes rub-rightright {
- 0% {
- margin-left: 4px;
- }
- 50% {
- margin-left: 0px;
- }
- 100% {
- margin-left: 4px;
- }
- }
- @keyframes jump {
- 0% {
- margin: 300px auto;
- }
- 40% {
- margin: 250px auto;
- }
- 80% {
- margin: 300px auto;
- }
- }
长沙网站设计
- 如何自己建一个网站 自己想建个网站,怎么建
- 如何制作网站免费建站 创建网站免费注册
- html简单网页代码 html简单网页代码超链接
- dreamweaver网页制作 dreamweaver网页制作模板
- 上海网站建设 上海网站建设制作微信
- 如何制作网站和网页 如何制作一个网页
- html网页制作代码大全 端午节html网页制作代码大
- app开发公司 app开发公司前十名
- html网页制作 html网页制作文字居中
- app制作一个需要多少钱 请人制作一个app多少钱
- 成都网站制作 成都网站制作维护
- 百度建一个网站多少钱 百度做个公司网站要多少
- html+css网页制作成品 web网页制作成品css+javascrip
- html网页制作案例 html网页设计案例
- html+css网页制作成品 web网页制作成品css+javascrip
- 个人网站模板 个人网站模板HTML