gpt4 book ai didi

html - 我在制作按钮时遇到问题

转载 作者:太空宇宙 更新时间:2023-11-04 06:21:29 25 4
gpt4 key购买 nike

我必须做一个按钮设计怎么做,但我做不到。你能帮忙吗?当边界悬停时,它需要到达效果。需要一个类似下面图片链接的按钮。我没有得到图片中的图像。

我想做的事:( https://pasteboard.co/I8gudAg.png )

我做了:

.btnc-secondary {
font-size: 18px;
padding: 10px 30px;
background: #f93140;
border-style: solid;
border-width: 1px;
outline-offset: -6px;
outline: 1px solid #ffffff;
border-radius: 0;
position: relative;
color: #ffffff;
}
.btnc-secondary:hover:after,
.btnc-secondary.active:after {
transition-delay: 0.2s;
transition: all 0.2s linear;
border-image-source: linear-gradient(98deg, #f93140, #f50a68);
}

.btnc-secondary[disabled] {
background: #ededed;
border: 1px solid #a0a0a0 !important;
outline-color: #3f3f3f;
color: #3d3d3d;

}

.btnc-secondary:active:after,
.btnc-secondary:active:before,
.btnc-secondary:after,
.btnc-secondary:before {
content: " ";
position: absolute;
left: 0;
top: 0;
width: 70%;
height: 50%;
border-left: 1px solid #ff8a93;
border-top: 1px solid #ff8a93;
margin: 4px;
transition: all 0.2s linear;
}

.btnc-secondary:hover,
.btnc-secondary.active {
background: #ffffff;
outline-color: #f50a68;
color: #f93140;
transition: all 0.2s linear;
}

.btnc-secondary.active {
transition: all 0.2s linear;
background-image: -webkit-linear-gradient(6deg, #c20101, #bc070e) !important;
background-image: -o-linear-gradient(6deg, #c20101, #bc070e) !important;
background-image: linear-gradient(84deg, #c20101, #bc070e) !important;
}

.btnc-secondary:active {
background: #ff0013;
outline-color: #ffffff !important;
color: #ffffff;
transition: all 0.2s linear;
}
<br><br><br><br>


<a class="btn btnc-secondary btn-sm fs-14 font-opensans" href="#">Title</a>

最佳答案

您在评论中给出的示例存在缺陷,因为它在 SVG 元素内使用了 div。

接下来是我的例子。它是一个 svg 元素,将采用其父元素的宽度。如果你愿意,你可以给 svg 一个固定的宽度。

动画需要3s,但是你可以通过更改--t的值来改变它到你想要的值

我正在使用 hsl 颜色,我正在改变亮度来改变颜色。

我希望这就是您要问的。

body{--t:3s}/*time*/

rect{stroke:hsl(254,57%,55%);}


svg{background:hsl(254,57%,95%);
transition:all var(--t) ease;
font-family:Arial;

}
text{text-anchor:middle;
pointer-events:none;
fill:hsl(254,57%,45%);
transition:all var(--t) ease-in-out;
}


.shape{
fill:none;
stroke:hsl(254,57%,45%);
stroke-dasharray:95px;
stroke-dashoffset:95px;
transition:all var(--t) ease;
}

/*HOVER*/

svg:hover{background:hsl(254,57%,55%)}

svg:hover .shape{
stroke:hsl(254,57%,75%);
stroke-dasharray:380px;
stroke-dashoffset:0px;
}

svg:hover text{fill:hsl(254,57%,95%)}
 <a href="">
<svg viewBox="-5 -5 160 50" >
<rect height="40" width="150" fill="none" stroke-width=".5" />
<path class="shape" d="M60,0L150,0 150,40 0,40 0,0 60,0" />
<text x="75" y="25" >Button 1</text>
</svg></a>

关于html - 我在制作按钮时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55473920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com