为了账号安全,请及时绑定邮箱和手机立即绑定

前端每日实战:105# 视频演示如何用纯 CSS 创作一只玉免

标签:
Html/CSS CSS3

https://img1.sycdn.imooc.com//5b74331000018d7903990176.jpg

效果预览

按下右侧的“点击预览”按钮可以在当前页面预览,点击链接可以全屏预览。

https://codepen.io/comehope/pen/yqrNJm点击预览

可交互视频

此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。

请用 chrome, safari, edge 打开观看。

https://scrimba.com/p/pEgDAM/cPEygSr

源代码下载

每日前端实战系列的全部源代码请从 github 下载:

https://github.com/comehope/front-end-daily-challenges

代码解读

定义 dom,页面中包含 2 个元素,分别代表兔子和云朵:

<div class="rabbit"></div><div class="clouds"></div>

居中显示:

body {    margin: 0;    height: 100vh;    display: flex;    align-items: center;    justify-content: center;    background: linear-gradient(midnightblue, black);    font-size: 30px;
}

画出兔子的身体:

.rabbit {    width: 5em;    height: 3em;    color: whitesmoke;    background: currentColor;    border-radius: 70% 90% 60% 50%;
}

用径向渐变画出兔子的眼睛:

.rabbit {    background: 
        radial-gradient(
            circle at 4.2em 1.4em,
            #333 0.15em,
            transparent 0.15em
        ), /* eye */
        currentColor;
}

用伪元素画出兔子的右耳:

.rabbit::before {    content: '';    position: absolute;    width: 0.75em;    height: 2em;    background-color: currentColor;    border-radius: 50% 100% 0 0;    transform: rotate(-30deg);    top: -1em;    right: 1em;
}

用阴影画出兔子的左耳:

.rabbit::before {    border: 0.1em solid;    border-color: gainsboro transparent transparent gainsboro;    box-shadow: -0.5em 0 0 -0.1em;
}

用伪元素画出兔子的尾巴:

.rabbit::after {    content: '';    position: absolute;    width: 1em;    height: 1em;    background-color: currentColor;    border-radius: 50%;    left: -0.3em;    top: 0.5em;
}

用阴影画出兔子的腿:

.rabbit::after {    box-shadow: 
        0.5em 1em 0,        4em 1em 0 -0.2em,        4em 1em 0 -0.2em;
}

画出兔子的影子:

.rabbit {    box-shadow: -0.2em 1em 0 -0.75em #333;
}

画出一个云朵:

.clouds {    width: 2em;    height: 2em;    color: whitesmoke;    background: currentColor;    border-radius: 100% 100% 0 0;    transform: translate(0, -5em);
}.clouds::before,.clouds::after {    content: '';    position: absolute;    background-color: currentColor;    bottom: 0;
}.clouds::before {    width: 1.25em;    height: 1.25em;    border-radius: 100% 100% 0 100%;    left: -30%;
}.clouds::after {    width: 1.5em;    height: 1.5em;    border-radius: 100% 100% 100% 0;    right: -30%;
}

用阴影再画 2 个云朵:

.rabbit {    z-index: 1;
}.clouds,.clouds::before,.clouds::after {    box-shadow: 
    5em 2em 0 -0.3em,
    -2em 2em 0 0;
}

接下来制作动画效果。
增加兔子跳动的动画:

.rabbit {    animation: hop 3s linear infinite;
}

@keyframes hop {
    20% {        transform: rotate(-10deg) translate(1em, -2em);        box-shadow: -0.2em 1em 0 -1em #333;
    }

    40% {        transform: rotate(10deg) translate(3em, -4em);        box-shadow: -0.2em 3.25em 0 -1.1em #333;
    }

    60%, 75% {        transform: rotate(0deg) translate(4em, 0);        box-shadow: -0.2em 1em 0 -0.75em #333;
    }
}

增加兔子的腿的伸缩动画:

.rabbit::after {    animation: kick 3s infinite linear;
}

@keyframes kick {
    40% {        box-shadow: 
            0.5em 2em 0,            4.2em 1.75em 0 -0.2em,            4.4em 1.9em 0 -0.2em;
    }
}

增加云朵飘动的动画:

.clouds {    animation: cloudy 3s infinite linear forwards;    filter: opacity(0);
}

@keyframes cloudy {
    40% {        transform: translate(-3em, -5em);        filter: opacity(0.75);
    }

    55% {        transform: translate(-4em, -5em);        filter: opacity(0);
    }
}

大功告成!

原文链接:https://segmentfault.com/a/1190000015997373

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消