QQ登录

只需要一步,快速开始

APP扫码登录

只需要一步,快速开始

查看: 4782|回复: 0

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

[复制链接]

等级头衔

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

丰功伟绩

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

联系方式
发表于 2020-7-6 13:32:58 | 显示全部楼层 |阅读模式
       CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。
3 \; k) H! l* c. U) ^& r       以下各特效用的HTML代码相同:
' h. y$ n# h5 e! w
<div id="box">
  编程适合那些有不同想法的人... <br/>
  对于那些想要创造大事物并愿意改变世界的人们。
</div>

: B2 u1 Q. V% {% E$ ^0 g+ u& ^& W1. CSS动画边框9 v% ~" \8 \# n( N7 E( F
CSS代码:
6 u7 X% n- R2 e  F1 `/ g9 }% T4 J
@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;
}
效果如下:8 M: h( k0 I% H2 {8 b/ D
1.gif " r9 g6 ^9 }$ L
1 C: N( f8 |% E, q5 w$ `9 _6 t
2. CSS图像边框# a' a3 U! |1 W' y: N4 P* e% C5 V" Q2 o
CSS代码:, i& W/ p% |( W8 r' p
#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;
}
效果如下:. ~1 Q$ R2 l9 {3 y4 [! t$ D
2.jpg
# g4 d+ A5 s0 G) D- P% @, T
# X8 J. P0 i7 t* O$ r$ P3.CSS蛇式边框* o5 \6 U5 b9 k; I  `1 c* ]. u2 q1 b
CSS代码:  C  D) s- y/ ~$ |) u
#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;
}
效果如下:
  M3 f' P) h/ s1 s6 ^0 u5 f9 L 3.jpg
% T- l: j' q: X* B2 S( P" P6 c; |" b9 J: B7 ?
4.CSS阶梯样式边框
% e9 A: B0 \1 C* NCSS代码:& y* n: |) B1 b6 p, a0 W
#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
}
效果如下:6 o3 e8 ?( V3 b* ^/ z5 g8 q7 w0 f5 U
4.jpg
) c' q4 [: D# ?, W7 l, g6 e4 i2 Q' I5 n- |! o5 e
5.CSS只有阴影边框6 r' L1 J- m; K) A. `
CSS代码:2 W4 i6 d2 w2 \8 W% ?. w
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 00010px white;
}
效果如下:
$ f* |; b  H; [# g 5.jpg
: o' L7 _; ~; w5 h. f7 K5 c+ E( m% a
! m  i9 S1 {3 ~% e6.CSS带阴影和轮廓的边框
8 |2 |4 F8 ~# A0 ~CSS代码:. V7 N) e8 ~2 P/ |# G/ u. g6 q
#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;
}
效果如下:
0 X- D" B) n' t8 ]- i& Z$ G 6.jpg # x7 B& v2 Y: w2 p" u$ {$ s+ h% W
5 @1 \6 h5 b5 q+ `5 |
7.CSS少量阴影和轮廓的边框4 o# K8 ?# |. k+ b* `
CSS代码:5 B4 n3 g0 k8 y- y7 Y
#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;
}
效果如下:% H6 [2 k+ J8 h2 N; d/ Q9 f
7.jpg
+ m7 h9 O' X) Y. `- a1 F9 p1 t3 {8 G* x. I  w# G0 R9 E* s" r
8.CSS带有阴影的双边框
5 j- C- X) q: d0 I$ f' F6 W9 PCSS代码:6 v+ b1 w# J. O0 [, [, d2 ~
#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;
}
效果如下:! W* `+ X2 |# I- M. C- t
8.jpg : v0 y  P) D( u1 @, m

% W. O! j" K+ v8 J9.CSS多色边框
5 q0 ~  \0 W4 c4 W3 i) \CSS代码:
+ B! T" }$ @. a
#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;
}
效果如下:
* n  K  _: r6 h0 M. e 9.jpg
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2026-9-12 17:28

Powered by paopaomj X3.5 © 2016-2025 sitemap

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