QQ登录

只需要一步,快速开始

APP扫码登录

只需要一步,快速开始

查看: 4709|回复: 0

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

[复制链接]

等级头衔

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

丰功伟绩

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

联系方式
发表于 2020-7-6 13:32:58 | 显示全部楼层 |阅读模式
       CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。/ {/ I; `3 _. \
       以下各特效用的HTML代码相同:
0 ?, ^+ |2 Q0 y0 g% b
<div id="box">
  编程适合那些有不同想法的人... <br/>
  对于那些想要创造大事物并愿意改变世界的人们。
</div>

9 B! _# z# L$ o; F! k0 H1. CSS动画边框8 @, k: W: s" K9 Q) j  i  H
CSS代码:$ q; O3 \+ ?3 z1 ~4 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;
}
效果如下:  R  f9 x* {% h4 y% E" R
1.gif + g) ?& J: ^4 o& I* J: G

5 A- a) _; S- y: X3 [+ h9 o# I0 A2. CSS图像边框
5 M9 X0 l' b/ X1 {3 ?, vCSS代码:# t" `3 A: B; z9 i& f+ `6 H0 i
#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;
}
效果如下:
# j2 {" b) u* F" F" q 2.jpg
% U+ u: \: {6 W- r& l: }
# a% H# |% c3 S/ v3.CSS蛇式边框( I1 W  b# U) G! J/ R
CSS代码:- f7 e' R3 K1 Q  k
#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;
}
效果如下:
, P2 Q+ N& b4 W+ R/ K) P8 H2 Y. [9 I 3.jpg
* l* O3 F6 n& }- K9 V" q6 O
) A, x+ |5 T/ T8 A/ @# ~4.CSS阶梯样式边框
; j% Q; R# h- u1 U/ t6 N* h' mCSS代码:1 R! b5 r3 K% N1 @- ]9 y
#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
}
效果如下:
; T) ~) T5 O  n% J* F& t% N 4.jpg / q- X4 p5 f0 `, J/ {" t

& \8 W/ f: w1 ~+ X* H4 p5.CSS只有阴影边框8 k- `9 J' o9 x& A* c( V$ u; x
CSS代码:/ a, q4 U5 D/ C  ]# K5 v6 R9 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;
}
效果如下:7 d. |2 d5 B2 b3 V' L3 q
5.jpg
3 T* F1 A; a4 n- Y) s
# [4 a+ C2 o) j1 H  _( K6.CSS带阴影和轮廓的边框
! h4 l1 _! o' ?+ `/ v- g# h2 c( nCSS代码:
% E9 [/ z2 l% P
#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;
}
效果如下:' I" s! Z+ y, T' \
6.jpg
" E5 |% J1 w7 f
4 ]2 V9 \5 N# u! e" E7.CSS少量阴影和轮廓的边框
0 {5 Q9 V& _7 }7 i$ yCSS代码:2 H" L0 d+ S' j  \
#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;
}
效果如下:
% q/ Y: P: ~1 u' W 7.jpg & |3 c6 k1 F9 t
$ W6 @) o9 K9 U! g1 U) s
8.CSS带有阴影的双边框* X1 U5 S( ], }; |
CSS代码:
: l6 r- j2 \6 S& q, J
#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;
}
效果如下:% U  \* B: Q# I% T4 X
8.jpg . v- h1 U' `# _# s

! {2 Y. x& j+ s9.CSS多色边框
) o* B; I1 w3 g1 G! N& mCSS代码:
- r* M% \- e! ^8 R- D
#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;
}
效果如下:
& V; g# U" a3 F; P( E+ c 9.jpg
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2026-8-18 23:22

Powered by paopaomj X3.5 © 2016-2025 sitemap

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