最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501
当前位置: 首页 - 科技 - 知识百科 - 正文

如何使用纯CSS实现一只会动的手(附源码)

来源:懂视网 责编:小采 时间:2020-11-02 22:07:45
文档

如何使用纯CSS实现一只会动的手(附源码)

如何使用纯CSS实现一只会动的手(附源码):本篇文章给大家带来的内容是关于如何使用纯CSS实现一只会动的手(附源码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。效果预览源代码下载https://github.com/comehope/front-end-daily-challenges代码解读定义 dom,容
推荐度:
导读如何使用纯CSS实现一只会动的手(附源码):本篇文章给大家带来的内容是关于如何使用纯CSS实现一只会动的手(附源码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。效果预览源代码下载https://github.com/comehope/front-end-daily-challenges代码解读定义 dom,容
本篇文章给大家带来的内容是关于如何使用纯CSS实现一只会动的手(附源码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

效果预览

1521623087-5b96ffea48511_articlex.gif

源代码下载

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

代码解读

定义 dom,容器中的 5 个 .finger 元素代表 5 根手指,.thumb 元素代表大拇指,.palm 元素代表手掌:

<div class="hand">
 <span class="finger thumb"></span>
 <span class="finger"></span>
 <span class="finger"></span>
 <span class="finger"></span>
 <span class="finger"></span>
 <span class="palm"></span>
</div>

居中显示:

body {
 margin: 0;
 height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 background: radial-gradient(white, lightcyan);
}

定义容器尺寸,其中 outline 属性是辅助线:

.hand {
 width: 16em;
 height: 8em;
 font-size: 10px;
 outline: 1px dashed black;
}

画出手掌:

.hand {
 position: relative;
 color: darksalmon;
}

.palm {
 position: absolute;
 width: 8em;
 height: 6em;
 background-color: currentColor;
 border-radius: 1em 4em;
 right: 0;
}

画出大拇指的轮廓:

.thumb {
 position: absolute;
 width: 9.6em;
 height: 3.2em;
 background-color: currentColor;
 border-radius: 3em 2em 2em 1em;
 right: 0;
 bottom: 1em;
 transform-origin: calc(100% - 2em) 2em;
 transform: rotate(-20deg);
 border-bottom: 0.2em solid rgba(0, 0, 0, 0.1);
 border-left: 0.2em solid rgba(0, 0, 0, 0.1);
}

画出大拇指上的指甲:

.thumb::before {
 content: '';
 position: absolute;
 width: 1.9em;
 height: 1.9em;
 background-color: rgba(255, 255, 255, 0.3);
 border-radius: 60% 10% 10% 30%;
 bottom: -0.3em;
 left: 0.5em;
 border-right: 0.1em solid rgba(0, 0, 0, 0.1);
}

画出食指靠近手掌的后半部分:

.finger:not(:first-child) {
 position: absolute;
 width: 6.4em;
 height: 3.5em;
 background-color: currentColor;
 right: 5.2em;
 bottom: 4em;
 transform-origin: 100% 2em;
 transform: rotate(10deg);
}

画出食指的前半部分:

.finger:not(:first-child)::before {
 content: '';
 position: absolute;
 width: 9em;
 height: 3em;
 background-color: currentColor;
 right: 4.2em;
 top: 0.2em;
 border-radius: 2em;
 transform-origin: calc(100% - 2em) 2em;
 transform: rotate(-60deg);
}

为除大拇指以外其他 4 根手指设置下标变量,从食指到小指逐渐缩小并且颜色加深:

.finger:not(:first-child) {
 --scale: calc(1 - (5 - var(--n)) * 0.2);
 transform: rotate(10deg) scale(var(--scale));
 filter: brightness(calc(100% - (5 - var(--n)) * 10%));
}

.finger:nth-child(2) { --n: 2; }
.finger:nth-child(3) { --n: 3; }
.finger:nth-child(4) { --n: 4; }
.finger:nth-child(5) { --n: 5; }

用伪元素画出手的阴影:

.hand::before {
 content: '';
 position: absolute;
 width: 14em;
 height: 4.5em;
 background-color: black;
 border-radius: 4em 1em;
 top: 4em;
 filter: blur(1em) opacity(0.3);
}

增加手指敲击桌面的动画效果:

.finger:not(:first-child) {
 animation: tap-upper 1.2s ease-in-out infinite;
 animation-delay: calc((var(--n) - 2) * 0.1s);
}

@keyframes tap-upper {
 0%, 50%, 100% {
 transform: rotate(10deg) scale(var(--scale));
 }

 40% {
 transform: rotate(50deg) scale(var(--scale));
 }
}

最后,不要忘记删掉辅助线。

大功告成!

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文档

如何使用纯CSS实现一只会动的手(附源码)

如何使用纯CSS实现一只会动的手(附源码):本篇文章给大家带来的内容是关于如何使用纯CSS实现一只会动的手(附源码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。效果预览源代码下载https://github.com/comehope/front-end-daily-challenges代码解读定义 dom,容
推荐度:
标签: 一个 实现 html5
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top