QQ登录

只需要一步,快速开始

APP扫码登录

只需要一步,快速开始

查看: 4614|回复: 0

[HTML/CSS/JS] 几个非常绚丽的CSS样式边框特效代码

[复制链接]

等级头衔

积分成就    金币 : 2861
   泡泡 : 1516
   精华 : 6
   在线时间 : 1328 小时
   最后登录 : 2026-7-17

丰功伟绩

优秀达人突出贡献荣誉管理论坛元老活跃会员

联系方式
发表于 2020-7-6 13:32:58 | 显示全部楼层 |阅读模式
       CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。2 I% ~6 a: i! S: B
       以下各特效用的HTML代码相同:
' i: C$ M, d) a$ u/ g# z
<div id="box">
  编程适合那些有不同想法的人... <br/>
  对于那些想要创造大事物并愿意改变世界的人们。
</div>
+ L7 f) n: [: l
1. CSS动画边框" V1 W, D; K2 u7 G& L3 u, S- B
CSS代码:3 Z/ ?/ ]1 J! M
@keyframes animated-border {
  0% {
    box-shadow: 0000rgba(255,255,255,0.4);
  }
  100% {
     box-shadow: 00020pxrgba(255,255,255,0);
  }
}
#box {
  animation: animated-border 1.5s infinite;
  font-family: Arial;
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
  color: white;
  border: 2px solid;
  border-radius: 10px;
  padding: 15px;
}
效果如下:
$ z2 X( r) P. a$ y 1.gif ' [1 G% a; S1 y* z. k

& K; W/ A; p' F: T$ Q2 ^+ P6 C2. CSS图像边框; Q- x+ k6 \, P/ J8 ~5 B
CSS代码:
: N) A( o6 r& z9 s3 l& J
#box {
    font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    border: 40px solid transparent;
    border-image: url(https://image.flaticon.com/icons/svg/648/648787.svg);
    border-image-slice: 100%;
    border-image-width: 60px;
    padding: 15px;
}
效果如下:
  z( r, g+ V8 @! z! ~1 q 2.jpg ' K1 `+ w# i7 w! P6 G6 j) a5 E6 s) ]
& {4 _/ H# h5 F8 ^8 O
3.CSS蛇式边框
: y) B# V7 w" W. l5 A1 \* ~; S- z" [CSS代码:
) {7 A8 n* x/ I0 P6 \
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 15px;
    border: 10px dashed #FF5722;
    background:
    linear-gradient(to top, green, 10px, transparent 10px),
    linear-gradient(to right, green, 10px, transparent 10px),
    linear-gradient(to bottom, green, 10px, transparent 10px),
    linear-gradient(to left, green, 10px, transparent 10px);
    background-origin: border-box;
}
效果如下:
+ v  a- f. y. ]9 e7 ]. r 3.jpg
3 o) P9 S6 h: ^6 [/ r: I; C( r) A$ T- ?+ o6 j( n8 c
4.CSS阶梯样式边框
7 n% `0 Z6 q" U0 k* N5 mCSS代码:- e, e5 F2 U6 h& j2 ^2 n$ j
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 40px;
    box-shadow:
  inset #0096880005px,
      inset #059c8e0001px,
      inset #0cab9c00010px,
      inset #1fbdae00011px,
      inset #8ce9ff00016px,
      inset #48e4d600017px,
      inset #e5f9f700021px,
      inset #bfecf700022px
}
效果如下:
, m! a7 M: R+ a) z7 R 4.jpg
+ W% c1 n9 }0 W0 L0 G7 a  O, O. [9 D, G8 o
5.CSS只有阴影边框* F+ z0 F" J5 }' K
CSS代码:# k% U; P8 A" F: g8 Z
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 00010px white;
}
效果如下:
1 M  S) S7 N9 F2 q9 F, R1 V 5.jpg
+ J2 g7 N) Q( P' ^7 ~9 |
$ h: s; N+ ?. j6.CSS带阴影和轮廓的边框
3 E. I7 f; I/ I% q3 y, p- n% l- X/ ZCSS代码:7 z  H* Q) J7 \( ~
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 40px;
    box-shadow: 00010px white;
    outline: dashed 10px#009688;
}
效果如下:* t/ t+ @% o- I3 i4 h5 _1 G
6.jpg
4 v  p& D3 i) |! E. m& M+ C! c9 u! b8 l4 t4 M
7.CSS少量阴影和轮廓的边框
: e* _; H9 l3 Q% r) j! {CSS代码:
$ m" D4 s% B6 U
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 40px;
    box-shadow:
      0001px#009688,
      0005px#F44336,
      0009px#673AB7,
      00010px#009688;
    outline: dashed 10px#009688;
}
效果如下:
# c+ @7 `1 F+ Q. @9 H6 u; K3 o" {  q 7.jpg
+ x& K8 \1 ^" q1 K) f/ S, ]; s! x
$ R8 ]3 B. r* f$ z- s9 @+ Q8.CSS带有阴影的双边框
; R; Y! a& }8 }1 o$ BCSS代码:
, b7 X. N  n; d9 a( G- k' H8 ?
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 40px;
    box-shadow: 00010px#009688;
    border: 10px solid #009688;
    outline: dashed 10px white;
}
效果如下:
" k2 L1 J+ u( w" d( p 8.jpg
  n3 ?1 d/ c, v/ A; D3 ?& U
- s  ?4 ^2 |' f9.CSS多色边框
: h. Q. G( D) O5 C9 s$ X# _1 \CSS代码:. q$ q* ?: S/ @3 c6 [; |7 y
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 40px;
    background:
      linear-gradient(to top, #4caf50, #4caf50 10px, transparent 10px),
      linear-gradient(to right, #c1ef8c, #c1ef8c 10px, transparent 10px),
      linear-gradient(to bottom, #8bc34a, #8bc34a 10px, transparent 10px),
      linear-gradient(to left, #009688, #00968810px, transparent 10px);
  background-origin: border-box;
}
效果如下:/ j, |3 X- E6 X  Y5 u( S0 @
9.jpg
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|小黑屋|paopaomj.COM ( 渝ICP备18007172号|渝公网安备50010502503914号 )

GMT+8, 2026-7-23 19:56

Powered by paopaomj X3.5 © 2016-2025 sitemap

快速回复 返回顶部 返回列表