温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

CSS3怎么实现可爱的小黄人动画

发布时间:2021-08-10 18:09:27 来源:亿速云 阅读:153 作者:chen 栏目:web开发

这篇文章主要介绍“CSS3怎么实现可爱的小黄人动画 ”,在日常操作中,相信很多人在CSS3怎么实现可爱的小黄人动画 问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”CSS3怎么实现可爱的小黄人动画 ”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

如图:

CSS3怎么实现可爱的小黄人动画

联想到我要做CSS3动画,呵呵……怎么办 ? ——没办法,抠呗!(此处勿喷,着实无素材)

……最后效果变成这样子,这是移动端的例子!(gif图有卡顿现象,请凑合看吧,非喜勿喷…):

CSS3怎么实现可爱的小黄人动画

OK,其实主要目的还是知识点的学习吧:

这个demo涉及的知识点有:

perspective

perspective-origin

transform-style

transform-origin

animation

@keyframes

translate3d,translateX,rotateY….

这些知识点有些涉及css3d动画,各个知识点的具体详解我就不解释了,有兴趣可以到这里了解一下:http://isux.tencent.com/css3/index.html

回到这个案例,话说这么挫的动画是怎么具体实现的呢? 我将分享代码给大家练习:

html结构:

XML/HTML Code复制内容到剪贴板

  1. <body>  

  2.     <div class="title">  

  3.         <p>小黄人</p>  

  4.     </div>  

  5.     <div class="wrapper">  

  6.         <div class="littleH">  

  7.             <div class="light">  

  8.                 <div class="light_left">  

  9.                     <p>欢迎欢迎,热烈欢迎</p>  

  10.                 </div>  

  11.                 <div class="light_right">  

  12.                     <p>欢迎欢迎,热烈欢迎</p>  

  13.                 </div>  

  14.                 <div class="load"></div>  

  15.             </div>  

  16.             <div class="littleH_body">  

  17.                 <div class="leftHair"></div>  

  18.                 <div class="rightHair"></div>  

  19.                 <div class="leftBlackeye"></div>  

  20.                 <div class="leftWhiteeye"></div>  

  21.                 <div class="rightBlackeye"></div>  

  22.                 <div class="rightWhiteeye"></div>  

  23.                 <div class="mouse"></div>  

  24.                 <div class="leftFoot"></div>  

  25.                 <div class="rightFoot"></div>  

  26.             </div>  

  27.         </div>  

  28.     </div>  

  29. </body>  

css代码:

CSS Code复制内容到剪贴板

  1. body{   

  2.             margin: 0;   

  3.             padding: 0;   

  4.             width: 100%;   

  5.             height: 100%;   

  6.         }   

  7.         .title p{   

  8.             text-aligncenter;   

  9.             font-size100px;   

  10.             font-weightbolder;   

  11.             color:#333;   

  12.         }   

  13.         .wrapper{   

  14.             margin400px auto;   

  15.         }   

  16.         .littleH{   

  17.             positionrelative;   

  18.             -webkit-perspective: 800;   

  19.             -webkit-perspective-origin: 50% 50%;   

  20.         }   

  21.         .light{   

  22.             -webkit-transform-style: preserve-3d;   

  23.         }   

  24.         .light .light_left,.light .light_right{   

  25.             positionabsolute;   

  26.             width: 100%;   

  27.             height300px;   

  28.             background: lightblue;   

  29.             -webkit-transform: rotateY(90deg) translate3d(0,300px,-200px);   

  30.             -webkit-animation: changeBgColor 2s linear infinite;   

  31.         }   

  32.         .light .light_right{   

  33.             -webkit-transform: rotateY(-90deg) translate3d(0,300px,-215px);   

  34.             -webkit-animation-delay: 1s;   

  35.         }   

  36.         @-webkit-keyframes changeBgColor{   

  37.             0%,100%{   

  38.                 background: lightblue;   

  39.             }   

  40.             50%{   

  41.                 background: lightgreen;   

  42.             }   

  43.         }   

  44.         .light .light_left p,.light .light_right p{   

  45.             color:#fff;   

  46.             font-size80px;   

  47.             font-weightbold;   

  48.             margin-left100px;   

  49.         }   

  50.         .light .light_right p{   

  51.             floatrightright;   

  52.             margin-right100px;   

  53.         }   

  54.         .light .load{   

  55.             positionabsolute;   

  56.             width500px;   

  57.             height1500px;   

  58.             background: -webkit-gradient(linear, left topleft bottombottomcolor-stop(51%,#aadbdc), color-stop(52%,#ffffff));   

  59.             background: -webkit-linear-gradient(top#aadbdc 51%,#ffffff 52%);   

  60.             background: linear-gradient(to bottombottom#aadbdc 51%,#ffffff 52%);    

  61.             background-size350px 80px;   

  62.             -webkit-animation: move_load 5s linear infinite;   

  63.         }   

  64.         @-webkit-keyframes move_load{   

  65.             0%{   

  66.                 -webkit-transform:rotateX(90deg) translate3d(250px,0,0);   

  67.             }   

  68.             100%{   

  69.                 -webkit-transform:rotateX(90deg) translate3d(250px,-320px,0);   

  70.             }   

  71.         }   

  72.         .littleH_body{   

  73.             positionabsolute;   

  74.             left:50%;   

  75.             margin-left: -157px;   

  76.             width314px;   

  77.             height425px;   

  78.             backgroundurl(1.png);   

  79.             -webkit-transform-style: preserve-3d;   

  80.         }   

  81.         .leftHair{   

  82.             positionabsolute;   

  83.             rightright58px;   

  84.             top:-5px;   

  85.             width100px;   

  86.             height17px;   

  87.             backgroundurl(lefthair.png);   

  88.             -webkit-transform-origin: left bottombottom;   

  89.             -webkit-animation: lefthair 1s .3s ease-in-out infinite;   

  90.   

  91.         }   

  92.         @-webkit-keyframes lefthair{   

  93.             0%,10%,40%,100%{   

  94.                 -webkit-transform: rotate(0deg) translateY(1px);   

  95.             }   

  96.             30%{   

  97.                 -webkit-transform: rotate(-3deg) translateY(1px);   

  98.             }   

  99.         }   

  100.         .rightHair{   

  101.             positionabsolute;   

  102.             left58px;   

  103.             top:-8px;   

  104.             width100px;   

  105.             height16px;   

  106.             backgroundurl(righthair.png);   

  107.             -webkit-transform-origin: rightright bottombottom;   

  108.             -webkit-animation: righthair 1s ease-in-out infinite;   

  109.         }   

  110.         @-webkit-keyframes righthair{   

  111.             0%,10%,40%,100%{   

  112.                 -webkit-transform: rotate(0deg) translateY(1px);   

  113.             }   

  114.             30%{   

  115.                 -webkit-transform: rotate(4deg) translateY(1px);   

  116.             }   

  117.         }   

  118.         .leftBlackeye{   

  119.             positionabsolute;   

  120.             rightright87px;   

  121.             top:102px;   

  122.             width43px;   

  123.             height43px;   

  124.             backgroundurl(eyeblack.png);   

  125.             -webkit-animation: leftblackeye 5s ease-in infinite;   

  126.         }   

  127.         @-webkit-keyframes leftblackeye{   

  128.             0%,20%,50%,70%,100%{   

  129.                 -webkit-transform: translateX(0px);   

  130.             }   

  131.             30%,40%{   

  132.                 -webkit-transform: translateX(15px);   

  133.             }   

  134.             80%,90%{   

  135.                 -webkit-transform: translateX(-15px);   

  136.             }   

  137.         }   

  138.         .leftWhiteeye{   

  139.             positionabsolute;   

  140.             rightright92px;   

  141.             top:110px;   

  142.             width20px;   

  143.             height21px;   

  144.             backgroundurl(whiteeye.png);   

  145.             background-size: 95% 95%;   

  146.             background-repeatno-repeat;   

  147.             -webkit-animation: leftwhiteeye 5s ease-in infinite;   

  148.         }   

  149.         @-webkit-keyframes leftwhiteeye{   

  150.             0%,20%,50%,70%,100%{   

  151.                 -webkit-transform: translateX(0px);   

  152.             }   

  153.             30%,40%{   

  154.                 -webkit-transform: translate3d(15px,3px,0);   

  155.             }   

  156.             80%,90%{   

  157.                 -webkit-transform: translate3d(-30px,3px,0);   

  158.             }   

  159.         }   

  160.         .rightBlackeye{   

  161.             positionabsolute;   

  162.             left84px;   

  163.             top:102px;   

  164.             width43px;   

  165.             height43px;   

  166.             backgroundurl(eyeblack.png);   

  167.             -webkit-animation: rightblackeye 5s ease-in infinite;   

  168.         }   

  169.         @-webkit-keyframes rightblackeye{   

  170.             0%,20%,50%,70%,100%{   

  171.                 -webkit-transform: translateX(0px);   

  172.             }   

  173.             30%,40%{   

  174.                 -webkit-transform: translateX(15px);   

  175.             }   

  176.             80%,90%{   

  177.                 -webkit-transform: translateX(-15px);   

  178.             }   

  179.         }   

  180.         .rightWhiteeye{   

  181.             positionabsolute;   

  182.             left102px;   

  183.             top:112px;   

  184.             width20px;   

  185.             height21px;   

  186.             backgroundurl(whiteeye.png);   

  187.             background-size: 95% 95%;   

  188.             background-repeatno-repeat;   

  189.             -webkit-animation: rightwhiteeye 5s ease-in infinite;   

  190.         }   

  191.         @-webkit-keyframes rightwhiteeye{   

  192.             0%,20%,50%,70%,100%{   

  193.                 -webkit-transform: translateX(0px);   

  194.             }   

  195.             30%,40%{   

  196.                 -webkit-transform: translate3d(15px,3px,0);   

  197.             }   

  198.             80%,90%{   

  199.                 -webkit-transform: translate3d(-30px,3px,0);   

  200.             }   

  201.         }   

  202.         .mouse{   

  203.             positionabsolute;   

  204.             left126px;   

  205.             top:210px;   

  206.             width71px;   

  207.             height30px;   

  208.             backgroundurl(mouse.png);   

  209.             -webkit-transform-origin: center top;   

  210.             -webkit-animation: mouse 5s ease-in-out infinite;   

  211.         }   

  212.         @-webkit-keyframes mouse{   

  213.             40%{   

  214.                 -webkit-transform: rotate(-15deg) translateX(22px);   

  215.             }   

  216.             0%,20%,60%,100%{   

  217.                 -webkit-transform: rotate(0deg);   

  218.             }   

  219.         }   

  220.         .leftFoot{   

  221.             positionabsolute;   

  222.             rightright85px;   

  223.             top:424px;   

  224.             width68px;   

  225.             height43px;   

  226.             backgroundurl(leftfoot.png);   

  227.             -webkit-transform-origin: left top;   

  228.             -webkit-animation: leftfoot .6s ease-in-out infinite;   

  229.         }   

  230.         @-webkit-keyframes leftfoot{   

  231.             0%,50%,100%{   

  232.                 -webkit-transform: rotate(0deg);   

  233.             }   

  234.             80%{   

  235.                 -webkit-transform: rotate(-10deg);   

  236.             }   

  237.         }   

  238.         .rightFoot{   

  239.             positionabsolute;   

  240.             left85px;   

  241.             top:424px;   

  242.             width68px;   

  243.             height43px;   

  244.             backgroundurl(rightfoot.png);   

  245.             margin-bottom100px;   

  246.             -webkit-transform-origin: rightright top;   

  247.             -webkit-animation: rightfoot .6s ease-in-out infinite;   

  248.         }   

  249.         @-webkit-keyframes rightfoot{   

  250.             0%,50%,100%{   

  251.                 -webkit-transform: rotate(0deg);   

  252.             }   

  253.   

  254.             30%{   

  255.                 -webkit-transform: rotate(10deg);   

  256.             }   

  257.         }   

代码应该还是很简单就能看懂的,不足之处在于图片没有合并,就凑合吧,主要目的还是对CSS3动画(特别是3d)知识点的学习及实践。多练习,才能记得更牢,用得更顺,这只是开始&hellip;&hellip;

PS:附上我抠的图片

CSS3怎么实现可爱的小黄人动画 1.png

CSS3怎么实现可爱的小黄人动画righthair.png

CSS3怎么实现可爱的小黄人动画lefthair.png

CSS3怎么实现可爱的小黄人动画eyeblack.png

CSS3怎么实现可爱的小黄人动画whiteeye.png

CSS3怎么实现可爱的小黄人动画mouse.png

CSS3怎么实现可爱的小黄人动画rightfoot.png

CSS3怎么实现可爱的小黄人动画leftfoot.png

到此,关于“CSS3怎么实现可爱的小黄人动画 ”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI