网页设计做出令人惊叹的 CSS 边框效果的程式码片段
点击数: 357
专业Google 关键字广告文案写作,专人Google广告代操服务,展现出流量转金流的最大化关键字广告,台北Google广告,台北Google代理商,关键字广告, 台北 Google 关键字广告,协助企业开通Google Ads帐户在Google上做广告。了解有关如何充分利用Google Ads的更多信息台北基隆GOOGLE关键字广告基隆台北网页设计费用台北网页设计价格基隆网页设计费用
边框通常被认为是次要的细节,用作图像或容器元素的点睛之笔。它们是一种美感,但几乎没有什么值得兴奋的。但随着 CSS 的发展,它们有潜力变得更强大。
考虑到这一点,让我们来看看一些边框范例,这些边框透过 CSS 提供的最佳功能进一步增强。
抢风头的人
这是一个提供平滑动画边框的解决方案。这种设定的好处在于它能吸引你,但绝不是俗气或夸张的。这将成为一个出色的号召性用语按钮。
CSS 范例
CSS
效果
CSS
效果
css代码
- #box {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 400px;
- height: 200px;
- color: white;
- font-family: 'Raleway';
- font-size: 2.5rem;
- }
- .gradient-border {
- --borderWidth: 3px;
- background: #1D1F20;
- position: relative;
- border-radius: var(--borderWidth);
- }
- .gradient-border:after {
- content: '';
- position: absolute;
- top: calc(-1 * var(--borderWidth));
- left: calc(-1 * var(--borderWidth));
- height: calc(100% + var(--borderWidth) * 2);
- width: calc(100% + var(--borderWidth) * 2);
- background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
- border-radius: calc(2 * var(--borderWidth));
- z-index: -1;
- animation: animatedgradient 3s ease alternate infinite;
- background-size: 300% 300%;
- }
- @keyframes animatedgradient {
- 0% {
- background-position: 0% 50%;
- }
- 50% {
- background-position: 100% 50%;
- }
- 100% {
- background-position: 0% 50%;
- }
- }
html代码
- class="gradient-border" id="box">CSS 范例
CSS
效果