一款纯css3制作的2015年元旦雪人动画特效教程


Posted in HTML / CSS onDecember 29, 2014

在圣诞节或者是元旦的时候,爱编程小编给大家分享一款纯css3实现的雪人动画特效。该实例实现一个雪人跳动的特效,效果图如下:

一款纯css3制作的2015年元旦雪人动画特效教程

实现的代码。

html代码:

XML/HTML Code复制内容到剪贴板
  1. <span class="text">lolwut<small>-@rsmswlln</small></span>  
  2.    <div class="body">  
  3.        <div class="hat">  
  4.            <div class="ribbon">  
  5.            </div>  
  6.        </div>  
  7.        <div class="face">  
  8.        </div>  
  9.        <div class="scarf">  
  10.        </div>  
  11.        <div class="right-arm">  
  12.            <div class="hand">  
  13.            </div>  
  14.        </div>  
  15.        <div class="left-arm">  
  16.            <div class="hand">  
  17.            </div>  
  18.        </div>  
  19.    </div>  
  20.    <div class="puddle">  
  21.    </div>  

css代码:

CSS Code复制内容到剪贴板
  1. body {   
  2.   background#c0392b;   
  3. }   
  4. .body {   
  5.   width250px;   
  6.   height250px;   
  7.   background#ffffff;   
  8.   border-radius: 50%;   
  9.   box-shadow: inset -20px -5px 35px rgba(0, 0, 0, 0.2);   
  10.   positionabsolute;   
  11.   rightright: 0;   
  12.   left: 0;   
  13.   margin300px auto;   
  14.   animation: jump 1s infinite;   
  15. }   
  16. .body:before {   
  17.   z-index: 2;   
  18.   content"";   
  19.   width180px;   
  20.   height180px;   
  21.   background#ffffff;   
  22.   border-radius: 50%;   
  23.   box-shadow: inset -10px -5px 10px rgba(0, 0, 0, 0.2);   
  24.   positionrelative;   
  25.   displayinline-block;   
  26.   top: -120px;   
  27.   left25px;   
  28. }   
  29. .body:after {   
  30.   content"";   
  31.   width140px;   
  32.   height140px;   
  33.   background#ffffff;   
  34.   border-radius: 50%;   
  35.   box-shadow: inset -10px -5px 10px rgba(0, 0, 0, 0.2);   
  36.   positionrelative;   
  37.   displayinline-block;   
  38.   top: -400px;   
  39.   left20px;   
  40. }   
  41. .body > .hat {   
  42.   width200px;   
  43.   height15px;   
  44.   border-radius: 50%;   
  45.   background-color#111111;   
  46.   positionabsolute;   
  47.   z-index: 4;   
  48.   top: -200px;   
  49.   left: -15px;   
  50. }   
  51. .body > .hat:before {   
  52.   content"";   
  53.   width100px;   
  54.   height65px;   
  55.   background-color#111111;   
  56.   displayinline-block;   
  57.   positionrelative;   
  58.   top: -55px;   
  59.   left51px;   
  60. }   
  61. .body > .hat:after {   
  62.   z-index: 5;   
  63.   content"";   
  64.   displayinline-block;   
  65.   positionrelative;   
  66.   top: -145px;   
  67.   left51px;   
  68.   width100px;   
  69.   height5px;   
  70.   border-radius: 50%;   
  71.   background-color#2b2b2b;   
  72. }   
  73. .body > .hat > .ribbon {   
  74.   height10px;   
  75.   width100px;   
  76.   background-color#6d2018;   
  77.   positionrelative;   
  78.   top: -90px;   
  79.   left51px;   
  80.   z-index: 6;   
  81. }   
  82. .body > .face {   
  83.   z-index: 3;   
  84.   width12px;   
  85.   height12px;   
  86.   background-color#2c3e50;   
  87.   border-radius: 50%;   
  88.   positionabsolute;   
  89.   top: -170px;   
  90.   left38px;   
  91. }   
  92. .body > .face:before {   
  93.   content"";   
  94.   background-colortransparent;   
  95.   displayinline-block;   
  96.   positionrelative;   
  97.   top30px;   
  98.   left: -45px;   
  99.   transform: rotate(-15deg);   
  100.   border-top12px solid transparent;   
  101.   border-bottom12px solid transparent;   
  102.   border-right40px solid #e67e22;   
  103. }   
  104. .body > .face:after {   
  105.   content"";   
  106.   background-colortransparent;   
  107.   displayinline-block;   
  108.   positionrelative;   
  109.   top: 0;   
  110.   left: -46px;   
  111.   transform: rotate(-15deg);   
  112.   border-top12px solid transparent;   
  113.   border-right40px solid #bf6516;   
  114. }   
  115. .body > .scarf {   
  116.   z-index: 3;   
  117.   width150px;   
  118.   height30px;   
  119.   background-color#2980b9;   
  120.   positionabsolute;   
  121.   top: -110px;   
  122.   left25px;   
  123.   transform: rotate(-15deg);   
  124.   border-radius: 20%;   
  125. }   
  126. .body > .scarf:after {   
  127.   content"";   
  128.   width75px;   
  129.   height30px;   
  130.   background-color#2980b9;   
  131.   displayinline-block;   
  132.   positionrelative;   
  133.   top16px;   
  134.   left80px;   
  135.   transform: rotate(85deg);   
  136.   border-radius: 20%;   
  137. }   
  138. .body > .left-arm,   
  139. .body .rightright-arm {   
  140.   z-index: 7;   
  141.   width100px;   
  142.   height6px;   
  143.   background-color#825a2c;   
  144.   positionabsolute;   
  145.   top10px;   
  146.   left: -20px;   
  147.   transform: rotate(-15deg);   
  148.   animation: rub-rightright 0.5s infinite;   
  149. }   
  150. .body > .left-arm > .hand,   
  151. .body .rightright-arm > .hand {   
  152.   width25px;   
  153.   height6px;   
  154.   background-color#825a2c;   
  155.   positionabsolute;   
  156.   top: -32px;   
  157.   left: -60px;   
  158.   transform: rotate(75deg);   
  159. }   
  160. .body > .left-arm:after,   
  161. .body .rightright-arm:after {   
  162.   content"";   
  163.   width75px;   
  164.   height6px;   
  165.   background-color#a87439;   
  166.   displayinline-block;   
  167.   positionrelative;   
  168.   top: -24px;   
  169.   left: -70px;   
  170.   transform: rotate(25deg);   
  171. }   
  172. .body > .left-arm.left-arm,   
  173. .body .rightright-arm.left-arm {   
  174.   background-color#a87439;   
  175.   animation: rub-left 0.5s infinite;   
  176.   top: -15px;   
  177.   z-index: 1;   
  178. }   
  179. .body > .left-arm.left-arm > .hand,   
  180. .body .rightright-arm.left-arm > .hand {   
  181.   background-color#a87439;   
  182.   top: -14px;   
  183.   transform: rotate(45deg);   
  184. }   
  185. .body > .left-arm.left-arm:after,   
  186. .body .rightright-arm.left-arm:after {   
  187.   background-color#825a2c;   
  188.   transform: rotate(5deg);   
  189.   top: -12px;   
  190.   left: -74px;   
  191. }   
  192. .puddle {   
  193.   z-index: -1;   
  194.   width200px;   
  195.   height100px;   
  196.   background#2980b9;   
  197.   border-radius: 50%;   
  198.   positionabsolute;   
  199.   rightright: 0;   
  200.   left: -50px;   
  201.   margin500px auto;   
  202. }   
  203. .puddle:after {   
  204.   content"";   
  205.   width120px;   
  206.   height80px;   
  207.   displayinline-block;   
  208.   border-radius: 50%;   
  209.   left150px;   
  210.   positionrelative;   
  211.   background-color#2980b9;   
  212. }   
  213. .text {   
  214.   text-aligncenter;   
  215.   font-family'Lobster'cursive;   
  216.   font-size74px;   
  217.   displayinline-block;   
  218.   transform: rotate(-15deg);   
  219.   positionabsolute;   
  220.   margin50px 30px;   
  221.   color#ffffff;   
  222.   text-shadow3px 3px 2px rgba(0, 0, 0, 0.5);   
  223. }   
  224. .text > small {   
  225.   font-size20px;   
  226.   displayblock;   
  227. }   
  228. @keyframes rub-left {   
  229.   0% {   
  230.     margin-left0px;   
  231.     margin-top: 0;   
  232.   }   
  233.   50% {   
  234.     margin-left5px;   
  235.     margin-top1px;   
  236.   }   
  237.   100% {   
  238.     margin-left0px;   
  239.     margin-top: 0;   
  240.   }   
  241. }   
  242. @keyframes rub-rightright {   
  243.   0% {   
  244.     margin-left4px;   
  245.   }   
  246.   50% {   
  247.     margin-left0px;   
  248.   }   
  249.   100% {   
  250.     margin-left4px;   
  251.   }   
  252. }   
  253. @keyframes jump {   
  254.   0% {   
  255.     margin300px auto;   
  256.   }   
  257.   40% {   
  258.     margin250px auto;   
  259.   }   
  260.   80% {   
  261.     margin300px auto;   
  262.   }   
  263. }  
HTML / CSS 相关文章推荐
让IE6支持css3,让 IE7、IE8 都支持CSS3
Oct 09 HTML / CSS
css3的transition效果和transfor效果示例介绍
Oct 30 HTML / CSS
利用CSS3实现文字折纸效果实例代码
Jul 10 HTML / CSS
css3给背景图片加颜色遮罩的方法
Nov 05 HTML / CSS
HTML5探秘:用requestAnimationFrame优化Web动画
Jun 03 HTML / CSS
关于前端上传文件全面基础扫盲贴(入门)
Aug 01 HTML / CSS
html5 canvas-1.canvas介绍(hello canvas)
Jan 07 HTML / CSS
Html5游戏开发之乒乓Ping Pong游戏示例(二)
Jan 21 HTML / CSS
HTML5 Canvas 绘图——使用 Canvas 绘制图形图文教程 使用html5 canvas 绘制精美的图
Aug 31 HTML / CSS
html5 Canvas实现图片旋转的示例
Jan 15 HTML / CSS
详解HTML5 data-* 自定义属性
Jan 24 HTML / CSS
AmazeUI 图标的示例代码
Aug 13 HTML / CSS
一款利用css3的鼠标经过动画显示详情特效的实例教程
Dec 29 #HTML / CSS
纯css3实现照片墙效果
Dec 26 #HTML / CSS
纯css3实现走马灯效果
Dec 26 #HTML / CSS
纯CSS3实现的阴影效果
Dec 24 #HTML / CSS
使用CSS3实现圆角,阴影,透明
Dec 23 #HTML / CSS
纯css3实现的鼠标悬停动画按钮
Dec 23 #HTML / CSS
css3实现3D色子翻转特效
Dec 23 #HTML / CSS
You might like
PHP缓存技术的使用说明
2011/08/06 PHP
php发送get、post请求的6种方法简明总结
2014/07/08 PHP
PHP开发框架kohana中处理ajax请求的例子
2014/07/14 PHP
PHP+jQuery实现滚屏无刷新动态加载数据功能详解
2017/05/04 PHP
静态图片的十一种滤镜效果--不支持Ie7及非IE浏览器。
2007/03/06 Javascript
javascript中的原型链深入理解
2014/02/24 Javascript
由浅入深剖析Angular表单验证
2016/07/14 Javascript
微信小程序 自定义Toast实例代码
2017/06/12 Javascript
js移动端图片压缩上传功能
2020/08/18 Javascript
vue路由跳转时判断用户是否登录功能的实现
2017/10/26 Javascript
Element-UI中Upload上传文件前端缓存处理示例
2019/02/21 Javascript
小程序两种滚动公告栏的实现方法
2019/09/17 Javascript
Vue图片浏览组件v-viewer用法分析【支持旋转、缩放、翻转等操作】
2019/11/04 Javascript
vue路由权限校验功能的实现代码
2020/06/07 Javascript
[40:05]LGD vs Winstrike 2018国际邀请赛小组赛BO2 第二场 8.17
2018/08/18 DOTA
跟老齐学Python之有容乃大的list(1)
2014/09/14 Python
21行Python代码实现拼写检查器
2016/01/25 Python
举例讲解Python中的迭代器、生成器与列表解析用法
2016/03/20 Python
python如何通过实例方法名字调用方法
2018/03/21 Python
python监控进程脚本
2018/04/12 Python
详解Django中间件执行顺序
2018/07/16 Python
解决pycharm回车之后不能换行或不能缩进的问题
2019/01/16 Python
python+opencv实现摄像头调用的方法
2019/06/22 Python
python 使用建议与技巧分享(四)
2020/08/18 Python
全球游戏Keys和卡片市场:GamesDeal
2018/03/28 全球购物
卡骆驰英国官网:Crocs英国
2019/08/22 全球购物
意大利文具和办公产品在线商店:Y-Office
2020/02/27 全球购物
外企财务年会演讲稿
2014/01/03 职场文书
不假外出检讨书
2014/01/27 职场文书
一月红领巾广播稿
2014/02/11 职场文书
会计工作决心书
2014/03/11 职场文书
珍惜水资源建议书
2014/03/12 职场文书
护士上岗前培训自我鉴定
2014/04/20 职场文书
毕业论文指导老师意见
2015/06/04 职场文书
解决Navicat for Mysql连接报错1251的问题(连接失败)
2021/05/27 MySQL
Win10鼠标宏怎么设置?win10系统鼠标宏的设置方法
2022/08/14 数码科技