QQ登录

只需要一步,快速开始

APP扫码登录

只需要一步,快速开始

查看: 3431|回复: 0

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

[复制链接]

等级头衔

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

丰功伟绩

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

联系方式
发表于 2020-7-6 13:32:58 | 显示全部楼层 |阅读模式
       CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。
( H0 U# m  D- z, k       以下各特效用的HTML代码相同:  i- y8 s8 T' M# J3 t) G8 l# I
<div id="box">
  编程适合那些有不同想法的人... <br/>
  对于那些想要创造大事物并愿意改变世界的人们。
</div>
% v" S; ?  `0 ?: K
1. CSS动画边框
' r$ D  R1 h0 rCSS代码:
! }7 z$ ~- D9 m$ 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;
}
效果如下:  H, X0 r7 P5 a+ @
1.gif 1 j$ f. U6 T. e2 q
0 f8 [  q5 _+ A. I
2. CSS图像边框# K* v$ p4 q% X$ A& Q
CSS代码:0 s9 h3 a; f/ t  ]& g$ W  H
#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) d2 W+ O/ \) T6 m 2.jpg & V% K% _2 q4 }
/ t% K: I% c, n. B
3.CSS蛇式边框9 g) N3 v# l. X3 e8 t
CSS代码:8 A* n0 o8 ~* c! S, \
#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;
}
效果如下:
0 Y* W4 L1 o: }6 U, K( f* y# j 3.jpg   C1 u& m2 s) |/ `3 @- N( Y
/ F( g) w# i2 K
4.CSS阶梯样式边框
2 j* [0 d) b8 Q; r/ LCSS代码:
4 n/ `+ ?) \+ d- v
#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
}
效果如下:) ^: g: v) G' V& X9 _/ b
4.jpg * W* u4 p7 T7 D% s) D

! G2 W7 R8 }7 h# d0 ~, l4 V5.CSS只有阴影边框
0 w$ I2 g' C/ I; j( i" KCSS代码:
) `2 {' F" A, X0 |* Y9 P4 L- o% u/ C
#box {
  font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 00010px white;
}
效果如下:
4 a; y) W; S2 B8 c3 Z0 ]5 C4 D 5.jpg
4 r5 x* r% H: P% J. I
9 ^8 c9 _) |; l0 q! A( ~" o' s6.CSS带阴影和轮廓的边框5 z- n# u7 ^0 A5 x
CSS代码:
# q  ?" y9 a! F  i
#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;
}
效果如下:
7 v; O) ^) T! B, r 6.jpg 6 k: T" L( n6 E% |6 r6 `- v8 x4 z
9 ^- c) n% N1 t+ M" b3 C
7.CSS少量阴影和轮廓的边框
  m5 ], w4 J6 V4 Z6 n: `5 ]CSS代码:
& d0 T& S- t8 v0 O' B) P1 Z/ P
#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;
}
效果如下:
# d+ i" a8 S) i 7.jpg 7 z, G$ Q! }( H3 a5 N0 J

% h4 Z2 j  o+ ^. K  p8.CSS带有阴影的双边框
- _! m0 p1 z1 p9 \" ?& ICSS代码:
2 U- I" N# R: M8 S0 ?/ X
#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;
}
效果如下:
5 `% m8 b" Z8 }. T 8.jpg : f+ }* F3 Z/ A
$ I2 n- H7 L8 i8 f& f' V/ v) U7 g
9.CSS多色边框
5 Q7 J; Q+ l  z3 {! v* zCSS代码:' C4 Q. h( j( I! \
#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;
}
效果如下:+ ]& q2 {4 Z% Z$ R8 s
9.jpg
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2025-9-18 15:43

Powered by paopaomj X3.5 © 2016-2025 sitemap

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