QQ登录

只需要一步,快速开始

APP扫码登录

只需要一步,快速开始

查看: 3810|回复: 0

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

[复制链接]

等级头衔

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

丰功伟绩

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

联系方式
发表于 2020-7-6 13:32:58 | 显示全部楼层 |阅读模式
       CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。
2 J7 \  Y; H% B9 }! d+ ~6 u       以下各特效用的HTML代码相同:8 s* {9 z* p5 |- w0 E# |& `
<div id="box">
  编程适合那些有不同想法的人... <br/>
  对于那些想要创造大事物并愿意改变世界的人们。
</div>
1 D* r6 Y5 T3 |* J9 P
1. CSS动画边框
4 j% q% K1 B: `/ z- j" B. WCSS代码:& V2 M5 s& a8 C4 y
@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;
}
效果如下:& j: P7 |7 T+ p' A, X: g
1.gif
9 y" S# F! b6 z% P# e
0 W) z; V9 }0 W( ?4 e$ V+ l" |2. CSS图像边框
$ u- ]4 _9 A4 Y+ j- \CSS代码:
+ V. A1 i* ?0 G8 u1 a
#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;
}
效果如下:' V% q( o. f* m" U" ^; c
2.jpg 2 [5 A2 d" @9 c( w/ T- @/ ?1 `

' Q9 f% s1 R7 H3.CSS蛇式边框9 c( ?* \6 A$ Y
CSS代码:
; w, y+ _- _( e' v  G
#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;
}
效果如下:
: G! _% M" k9 a  M6 L8 y9 k) [6 Q) S 3.jpg
8 o% |  O2 N# C$ K
7 K2 f$ o1 D7 w4.CSS阶梯样式边框
! P6 d  B) w) Z5 k$ K4 z1 k9 s" iCSS代码:0 f1 y  v8 _1 f1 L
#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
}
效果如下:; x( j& Z$ u$ C5 w: [: p: U9 M
4.jpg ' H' b+ a$ h+ p* l0 K% A$ J+ F" c
( h- l/ w* S; V$ K" N5 w
5.CSS只有阴影边框9 m" G/ X' W0 Y! w6 E! l+ h
CSS代码:
  g$ O5 A& S! E( U% H* B) I: Q  p
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 00010px white;
}
效果如下:
7 X9 U1 M7 Q# k+ f 5.jpg
- {1 Q+ ~1 ~1 _6 D/ l7 o' u/ O' W
* g1 K8 X0 e8 v) D6.CSS带阴影和轮廓的边框
4 [/ L  }) u, x) j$ q2 z: s$ DCSS代码:/ S3 {5 {4 F) W; {8 o9 E1 n
#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;
}
效果如下:
" Q$ k' [7 H+ ^& N  F+ V+ w, F  V" P6 T0 Z 6.jpg - i1 P+ ]* |# }* c% m, @) B% G
  ]6 |! q- v. r6 Y4 \
7.CSS少量阴影和轮廓的边框7 U- B0 F* S% D8 z5 F/ g% N. b1 F
CSS代码:6 j$ [, _: r) ]/ V9 f9 ?
#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;
}
效果如下:
- ^% j4 o1 B* {# g. L  J& A 7.jpg
, i- h( Q( u' H: e. g
: Q* Z  F8 T: U. ~8.CSS带有阴影的双边框
+ {5 \! w5 ]' A9 w$ \2 H2 @8 ^% ]CSS代码:
* W( Y. A) U* O" M7 L
#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;
}
效果如下:
; _1 u3 r% l& T/ g7 c' N& t 8.jpg - M+ K+ p$ g8 \
  s8 y, o, w+ U$ q) b9 {3 r* ]7 f
9.CSS多色边框6 T  M( z5 [. D, K
CSS代码:8 N: w! d: {1 e! U' @; \# z/ a  G
#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;
}
效果如下:
" h; E* X, b! b  u3 c9 `& i1 h 9.jpg
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2026-2-2 14:32

Powered by paopaomj X3.5 © 2016-2025 sitemap

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