摘要:效果预览按下右侧的点击预览按钮可以在当前页面预览,点击链接可以全屏预览。可交互视频此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。给壶加上阴影再用伪元素给壶加上光影最后,加上动画大功告成
效果预览
按下右侧的“点击预览”按钮可以在当前页面预览,点击链接可以全屏预览。
https://codepen.io/comehope/pen/ZRjGGy
可交互视频此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。
请用 chrome, safari, edge 打开观看。
https://scrimba.com/p/pEgDAM/cLQPgSE
源代码下载每日前端实战系列的全部源代码请从 github 下载:
https://github.com/comehope/front-end-daily-challenges
代码解读定义 dom,容器中包含 1 个元素表示壶体,其中再包含 1 个元素表示壶把手:
居中显示:
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(to right bottom, silver, dimgray); }
重定义盒模型:
*, *::before, *::after { box-sizing: border-box; }
定义容器尺寸:
.container { width: 150px; height: 150px; background-color: snow; border-radius: 50%; }
画出壶的最大的部分:
.container { display: flex; align-items: center; justify-content: center; } .pot { width: 85px; height: 85px; background-color: deepskyblue; border-radius: 50%; }
用伪元素画出壶的上半部分:
.pot { position: relative; } .pot::before { content: ""; position: absolute; width: 85px; height: 43px; background-color: hotpink; border-radius: 43px 43px 0 0; }
用伪元素画出壶嘴:
.pot::after { content: ""; position: absolute; width: 43px; height: 10px; background-color: hotpink; left: 21px; top: -3px; }
画出把手横向的部分:
.pot .handle { width: 83px; height: 7px; background-color: black; border-radius: 7px; position: absolute; left: 13px; top: 12px; }
用伪元素画出把手竖向的部分:
.pot .handle::before { content: ""; position: absolute; width: 7px; height: 50px; background-color: black; border-radius: 7px; left: calc(85px - 7px); }
接下来润色一下。
给壶加上阴影:
.pot { border-right: 5px solid steelblue; } .pot::before { border-right: 5px solid palevioletred; }
再用伪元素给壶加上光影:
.container::after { content: ""; position: absolute; width: 70px; height: 70px; border: 3px solid transparent; border-left-color: white; border-radius: 50%; left: 40px; top: 40px; transform: rotate(-10deg); }
最后,加上动画:
.container { animation: pouring 3s linear infinite alternate; } @keyframes pouring { 0%, 25% { transform: rotate(0deg); } 75%, 100% { transform: rotate(-45deg); } }
大功告成!
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/116757.html
摘要:效果预览按下右侧的点击预览按钮可以在当前页面预览,点击链接可以全屏预览。可交互视频此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。给壶加上阴影再用伪元素给壶加上光影最后,加上动画大功告成 showImg(https://segmentfault.com/img/bVbcGdg?w=500&h=500); 效果预览 按下右侧的点击预览按钮可以在当前页面预览,点击链接可以全屏预览...
摘要:过往项目年月份项目汇总共个项目年月份项目汇总共个项目年月份发布的项目前端每日实战专栏每天分解一个前端项目,用视频记录编码过程,再配合详细的代码解读,是学习前端开发的活的参考书视频演示如何用纯创作一个表达怀念童年心情的条纹彩虹心特效视频演示如 过往项目 2018 年 5 月份项目汇总(共 30 个项目) 2018 年 4 月份项目汇总(共 8 个项目) 2018 年 6 月份发布的项目 ...
摘要:过往项目年月份项目汇总共个项目年月份项目汇总共个项目年月份发布的项目前端每日实战专栏每天分解一个前端项目,用视频记录编码过程,再配合详细的代码解读,是学习前端开发的活的参考书视频演示如何用纯创作一个表达怀念童年心情的条纹彩虹心特效视频演示如 过往项目 2018 年 5 月份项目汇总(共 30 个项目) 2018 年 4 月份项目汇总(共 8 个项目) 2018 年 6 月份发布的项目 ...
阅读 2224·2021-11-15 11:37
阅读 2600·2021-09-23 11:21
阅读 2925·2021-09-07 10:11
阅读 3142·2019-08-30 15:53
阅读 2788·2019-08-29 15:13
阅读 1587·2019-08-26 13:57
阅读 1080·2019-08-26 12:23
阅读 2371·2019-08-26 11:51