最新文章专题视频专题问答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
当前位置: 首页 - 科技 - 知识百科 - 正文

css如何实现虚线边框滚动效果

来源:动视网 责编:小采 时间:2020-11-02 22:15:23
文档

css如何实现虚线边框滚动效果

css如何实现虚线边框滚动效果:我们先来看一下效果:实现代码如下:HTML<div class="box"> <p>测试测试</p> </div>Easy-way通过背景图片实现。.box { width: 100px; height: 100px; position: relative; b
推荐度:
导读css如何实现虚线边框滚动效果:我们先来看一下效果:实现代码如下:HTML<div class="box"> <p>测试测试</p> </div>Easy-way通过背景图片实现。.box { width: 100px; height: 100px; position: relative; b


我们先来看一下效果:

实现代码如下:

HTML

<div class="box">
 <p>测试测试</p>
</div>

Easy-way

通过背景图片实现。

.box {
 width: 100px;
 height: 100px;
 position: relative;
 background: url(https://www.zhangxinxu.com/study/image/selection.gif);
 p {
 position: absolute;
 left: 0;
 top: 0;
 right: 0;
 bottom: 0;
 margin: auto;
 height: calc(100% - 2px);
 width: calc(100% - 2px);
 background-color: #fff;
 }
}

(视频教程推荐:css视频教程)

repeating-linear-gradient

135度repeating线性渐变,p撑开高度,白色背景覆盖外层div渐变。

.box {
 width: 100px;
 height: 100px;
 background: repeating-linear-gradient(
 135deg,
 transparent,
 transparent 4px,
 #000 4px,
 #000 8px
 );
 overflow: hidden; // 新建一个BFC,解决margin在垂直方向上折叠的问题
 animation: move 1s infinite linear;
 p {
 height: calc(100% - 2px);
 margin: 1px;
 background-color: #fff;
 }
}
@keyframes move {
 from {
 background-position: -1px;
 }
 to {
 background-position: -12px;
 }
}

linear-gradient&&background

通过线性渐变以及background-size画出虚线,然后再通过background-position将其移动到四边。这种方式比较好的地方在于可以分别设置四条边的样式以及动画的方向,细心的同学应该会发现上一种方式的动画并不是顺时针或者逆时针方向的。

.box {
 width: 100px;
 height: 100px;
 background: linear-gradient(0deg, transparent 6px, #e60a0a 6px) repeat-y,
 linear-gradient(0deg, transparent 50%, #0f0ae8 0) repeat-y,
 linear-gradient(90deg, transparent 50%, #09f32f 0) repeat-x,
 linear-gradient(90deg, transparent 50%, #fad648 0) repeat-x;
 background-size: 1px 12px, 1px 12px, 12px 1px, 12px 1px;
 background-position: 0 0, 100% 0, 0 0, 0 100%;
 animation: move2 1s infinite linear;
 p {
 margin: 1px;
 }
}
@keyframes move2 {
 from {
 }
 to {
 background-position: 0 -12px, 100% 12px, 12px 0, -12px 100%;
 }
}

linear-gradient&&mask

mask属性规范已经进入候选推荐规范之列,会说以后进入既定规范标准已经是板上钉钉的事情,大家可以放心学习,将来必有用处。

这里同样可以使用mask来实现相同的动画,并且可以实现虚线边框渐变色这种效果,与background不同的是mask需要在中间加上一块不透明的遮罩,不然p元素的内容会被遮盖住。

.box {
 width: 100px;
 height: 100px;
 background: linear-gradient(0deg, #f0e, #fe0);
 -webkit-mask: linear-gradient(0deg, transparent 6px, #e60a0a 6px) repeat-y,
 linear-gradient(0deg, transparent 50%, #0f0ae8 0) repeat-y,
 linear-gradient(90deg, transparent 50%, #09f32f 0) repeat-x,
 linear-gradient(90deg, transparent 50%, #fad648 0) repeat-x,
 linear-gradient(0deg, #fff, #fff) no-repeat; // 这里不透明颜色随便写哦
 -webkit-mask-size: 1px 12px, 1px 12px, 12px 1px, 12px 1px, 98px 98px;
 -webkit-mask-position: 0 0, 100% 0, 0 0, 0 100%, 1px 1px;
 overflow: hidden;
 animation: move3 1s infinite linear;
 p {
 height: calc(100% - 2px);
 margin: 1px;
 background-color: #fff;
 }
}
@keyframes move3 {
 from {
 }
 to {
 -webkit-mask-position: 0 -12px, 100% 12px, 12px 0, -12px 100%, 1px 1px;
 }
}

推荐教程:css快速入门

文档

css如何实现虚线边框滚动效果

css如何实现虚线边框滚动效果:我们先来看一下效果:实现代码如下:HTML<div class="box"> <p>测试测试</p> </div>Easy-way通过背景图片实现。.box { width: 100px; height: 100px; position: relative; b
推荐度:
标签: 边框 虚线框 实现
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top