gpt4 book ai didi

html - 使用盒子阴影制作斜 Angular 效果

转载 作者:行者123 更新时间:2023-11-28 12:50:51 26 4
gpt4 key购买 nike

我有这个 css 代码,上面有一个标签。当我将鼠标悬停在它上面时,我将其设置为斜面。

这是CSS:

#slider-next {    
padding:10px 60px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
background: -moz-linear-gradient(top, #28c4e3 0%, #0d5664 100%); /* firefox */

text-shadow: 0 1px 2px #fff;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#28c4e3), color-stop(100%,#0d5664)); /* webkit */font-size:20px}

#slider-next:hover {
box-shadow: 0 1px 2px #fff, 0 -1px 1px #666, inset 0 -1px 1px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.8);
-moz-box-shadow: 0 1px 2px #fff, 0 -1px 1px #666, inset 0 -1px 1px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.8);
-webkit-box-shadow: 0 1px 2px #fff, 0 -1px 1px #666, inset 0 -1px 1px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.8);
border: solid #ccc 3px;
}

这是 html:

<span id="slider-next" style="float:right"></span>

我想做的是当我将鼠标悬停在跨度文本上时,它会倾斜,以提供类似按钮的效果。现在它向下倾斜。

如何让它 flex ? Here's a fiddle of it.

最佳答案

只需要快速调整 box-shadow 值(我反转了 y 值),现在它看起来更像一个按钮。此外,带前缀的 box-shadow 声明应始终位于无前缀声明之前。

现场演示:

#slider-next {    
padding:10px 60px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
background: -moz-linear-gradient(top, #28c4e3 0%, #0d5664 100%); /* firefox */

text-shadow: 0 1px 2px #fff;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#28c4e3), color-stop(100%,#0d5664)); /* webkit */font-size:20px}

#slider-next:hover {
-moz-box-shadow: 0 -1px 2px #fff, 0 1px 1px #666, inset 0 -1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.8);
-webkit-box-shadow: 0 -1px 2px #fff, 0 1px 1px #666, inset 0 -1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.8);
box-shadow: 0 -1px 2px #fff, 0 1px 1px #666, inset 0 -1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.8);
border: solid #ccc 3px;
}
<span id="slider-next" style="float:left"></span>

JSFiddle 版本:http://jsfiddle.net/g7YMV/4/

关于html - 使用盒子阴影制作斜 Angular 效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16974835/

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