2014圣诞节一款纯css3实现的雪人动画特效

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

在线预览   源码下载

实现的代码。

html代码:

 <span class="text">lolwut<small>[email protected]</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代码:

 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;
  right: 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;
  top: -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;
  top: -400px;
  left: 20px;
}
.body > .hat {
  width: 200px;
  height: 15px;
  border-radius: 50%;
  background-color: #111111;
  position: absolute;
  z-index: 4;
  top: -200px;
  left: -15px;
}
.body > .hat:before {
  content: "";
  width: 100px;
  height: 65px;
  background-color: #111111;
  display: inline-block;
  position: relative;
  top: -55px;
  left: 51px;
}
.body > .hat:after {
  z-index: 5;
  content: "";
  display: inline-block;
  position: relative;
  top: -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;
  top: -90px;
  left: 51px;
  z-index: 6;
}
.body > .face {
  z-index: 3;
  width: 12px;
  height: 12px;
  background-color: #2c3e50;
  border-radius: 50%;
  position: absolute;
  top: -170px;
  left: 38px;
}
.body > .face:before {
  content: "";
  background-color: transparent;
  display: inline-block;
  position: relative;
  top: 30px;
  left: -45px;
  transform: rotate(-15deg);
  border-top: 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;
  top: 0;
  left: -46px;
  transform: rotate(-15deg);
  border-top: 12px solid transparent;
  border-right: 40px solid #bf6516;
}
.body > .scarf {
  z-index: 3;
  width: 150px;
  height: 30px;
  background-color: #2980b9;
  position: absolute;
  top: -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;
  top: 16px;
  left: 80px;
  transform: rotate(85deg);
  border-radius: 20%;
}
.body > .left-arm,
.body .right-arm {
  z-index: 7;
  width: 100px;
  height: 6px;
  background-color: #825a2c;
  position: absolute;
  top: 10px;
  left: -20px;
  transform: rotate(-15deg);
  animation: rub-right 0.5s infinite;
}
.body > .left-arm > .hand,
.body .right-arm > .hand {
  width: 25px;
  height: 6px;
  background-color: #825a2c;
  position: absolute;
  top: -32px;
  left: -60px;
  transform: rotate(75deg);
}
.body > .left-arm:after,
.body .right-arm:after {
  content: "";
  width: 75px;
  height: 6px;
  background-color: #a87439;
  display: inline-block;
  position: relative;
  top: -24px;
  left: -70px;
  transform: rotate(25deg);
}
.body > .left-arm.left-arm,
.body .right-arm.left-arm {
  background-color: #a87439;
  animation: rub-left 0.5s infinite;
  top: -15px;
  z-index: 1;
}
.body > .left-arm.left-arm > .hand,
.body .right-arm.left-arm > .hand {
  background-color: #a87439;
  top: -14px;
  transform: rotate(45deg);
}
.body > .left-arm.left-arm:after,
.body .right-arm.left-arm:after {
  background-color: #825a2c;
  transform: rotate(5deg);
  top: -12px;
  left: -74px;
}
.puddle {
  z-index: -1;
  width: 200px;
  height: 100px;
  background: #2980b9;
  border-radius: 50%;
  position: absolute;
  right: 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-top: 0;
  }
  50% {
    margin-left: 5px;
    margin-top: 1px;
  }
  100% {
    margin-left: 0px;
    margin-top: 0;
  }
}
@keyframes rub-right {
  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;
  }
}

via:http://www.w2bc.com/Article/13508

时间: 2024-11-07 00:48:29

2014圣诞节一款纯css3实现的雪人动画特效的相关文章

纯CSS3按钮边框线条动画特效--底部边框hover从中点向两侧变长

html: <a href='' class='ui-box bottom-inOutSpread'>Audio Description</a> css: .ui-box { text-decoration:none; border:none; font-family:'Roboto', sans-serif; font-size:14px; position:relative; vertical-align:baseline; padding:10px}.bottom-inOut

推荐10款纯css3实现的实用按钮

在2014年的双11即将来临之季,爱编程小编为大家整理10款纯css3实现的按钮.希望这对坚守在前端的码农们有所帮助.亲,如果你有好的资源也可在本文留言,让从事编码的程序员们抱团.工作更轻松. No1.一款基于css3非常实用的鼠标悬停特效 这款特效,当鼠标经过时候一个半透明的遮罩层倒下来.效果很好,而且是纯css3实现的,代码很少,非常实用. 效果如下: 在线预览   源码下载 No2.一款基于css3的简单的鼠标悬停按钮 这款悬停按钮鼠标经过前边框是间断的.当鼠标经过的时候边框间隔消失.效果

一款纯css3实现的动画加载导航

之前为大家介绍了好几款导航菜单,今天为给大家再带来一款纯css3实现的动画加载导航.该导航出现的时候以动画的形式出现.效果图如下: 在线预览   源码下载 实现的代码. html代码: <ul class="main-menu"> <li class="main-menu-item active"><a href="#">Home</a></li><li class="m

一款纯css3实现的数字统计游戏

今天给大家分享一款纯css3实现的数字统计游戏.这款游戏的规则的是将所有的数字相加等于72.这款游戏的数字按钮做得很美观,需要的时候可以借用下.一起看下效果图: 在线预览   源码下载 实现的代码. html代码: <h1> CSS Counter Game</h1> <section> <h2> Pick the numbers that add up to 72:</h1> <input id="a" type=&q

一款纯css3实现的翻转按钮

之前为大家介绍了好多纯css3实现的很漂亮的按钮.今天小编要给各网友再分享一款纯css3实现的翻转按钮.实现中给出了两种的翻转特效,一种是基于按扭的左边缘为中心线,另一种是基于按钮的中间为中心线.我们一起看下效果图: 在线预览   源码下载 实现的代码 html代码: <article> <a target="_blank" class="btn-fold-1" href="http://www.w2bc.com"><

一款简洁的纯css3代码实现的动画导航

之前为大家介绍了好多导航菜单,今天给大家分享一款简洁的纯css3代码实现的动画导航.鼠标经过的时候以背景色以菱形渐变为长方形.效果图如下: 在线预览   源码下载 实现的代码. html代码: <div align="center" style="background-color: #ee1d27; padding: 20px;"> <div class="contener_link"> <div class=&qu

一款纯css3实现的机器人看书动画效果

今天要给大家介绍一款纯css3实现的机器人看书动画效果.整个画面完全由css3实现的绘制,没有使用任何图片元素.机器人的眼睛使用了动画元素.我们一起看下效果图: 在线预览   源码下载 实现的代码. html代码: <div class='szene'> <div class='image i1'> < HTML > <div class='nail'> </div> </div> <div class='image i2'&g

一款纯css3实现的超炫动画背画特效

之前为大家介绍了很多款由纯css3实现的特效.今天要再给大家带来一款纯css3实现的超炫动画背画特效.代码非常简单,没有引用任何其它js代码.css代码也不多.效果非常炫.一起看下效果图: 在线预览   源码下载 实现的代码. html代码: <div class='fake-gif'> <span class='stripe'></span><span class='stripe'></span><span class='stripe'&

一款纯css3实现的动画按钮

今天给大家分享一款纯css3实现的动画按钮.第一排的按钮当鼠标经过的背景色动画切换,图标从右侧飞入,第二排的按钮当鼠标经过的时候边框动画切换,图标右侧飞入,效果非常好,一起看下效果图: 在线预览   源码下载 实现的代码. html代码: <div class="black"> <a href="#" class="btn"><span>Become A Member</span> <i>