博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
前端每日实战:30# 视频演示如何用纯 CSS 创作一个晃动的公告板
阅读量:6212 次
发布时间:2019-06-21

本文共 1732 字,大约阅读时间需要 5 分钟。

图片描述

效果预览

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

可交互视频教程

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

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

源代码下载

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

代码解读

定义 dom,容器中包含公告牌、挂公告牌的细绳和固定绳子的 3 个图钉:

THANKS

居中显示:

html, body {    width: 100%;    height: 100%;    display: flex;    align-items: center;    justify-content: center;    background: radial-gradient(circle at center 60%, white, sandybrown);}

定义公告牌的整体尺寸:

.signboard {    width: 400px;    height: 300px;}

设置木板的样式:

.signboard {    position: relative;}.sign {    width: 100%;    height: 200px;    background: burlywood;    border-radius: 15px;    position: absolute;    bottom: 0;}

设置有雕刻效果的文字样式:

.sign {    color: saddlebrown;    font-family: sans-serif;    font-weight: bold;    text-align: center;    line-height: 200px;    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.3),                0 -2px 0 rgba(0, 0, 0, 0.7);}

画出细绳:

.strings {    width: 150px;    height: 150px;    border: 5px solid brown;    position: absolute;    border-right: none;    border-bottom: none;    transform: rotate(45deg);    top: 38px;    left: 122px;}

画出细绳顶部的图钉:

.pin {    width: 25px;    height: 25px;    border-radius: 50%;    position: absolute;}.pin.top {    background: gray;    left: 187px;}

画出木板上左右两侧的图钉:

.pin.left,.pin.right {    background: brown;    top: 110px;    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.3);}.pin.left {    left: 80px;}.pin.right {    right: 80px;}

最后,让告示牌晃动起来:

(此处已按 小蕾蕾 的建议修改为以顶部图钉作为旋转轴,比最初的效果要好)

.signboard {    animation: swing 1.5s ease-in-out infinite alternate;    transform-origin: 200px 13px;}@keyframes swing {    from {        transform: rotate(10deg);    }    to {        transform: rotate(-10deg);    }}

大功告成!

转载地址:http://txdja.baihongyu.com/

你可能感兴趣的文章
图解 CSS (5): font - 字体
查看>>
我的友情链接
查看>>
编程思维,从10^0为什么是1开始……
查看>>
C#发送消息到记事本窗口
查看>>
linux 下 apache php-cgi 安装及配置
查看>>
ArrayList/Vector/LinkedList 区别与用法
查看>>
读《head first设计模式》随笔(1
查看>>
linux之pmap命令
查看>>
mkcephfs脚本
查看>>
重置centos 7 root密码
查看>>
【移动开发】WIFI热点通信(一)
查看>>
SQL Server2008附加数据库之后显示为只读时解决方法
查看>>
Android知识体系
查看>>
Json和Jsonp理论实例代码详解
查看>>
非局部静态数据在多编译单元中的窘境
查看>>
ex14 Python运行提示错误need more than 1 value to unpack
查看>>
项目实施人员请做到天时地利人和
查看>>
投票送广交会资料!
查看>>
苹果公司遭欧盟调查 涉嫌勾结书商操控电子书价
查看>>
python 文件处理、数据持久化与正则
查看>>