更改 Twitter Bootstrap 中按钮的形状(“箭头”后退按钮)?
我想知道是否有任何方法可以更改引导按钮的形状,以获得如下内容:
有什么建议吗?
I would like to know if there is any way to change the shape of a bootstrap button, to get something like this:
Any tips?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您使用图像和
:after
伪元素,否则您不会在按钮的乳头尖端获得圆形边缘,但您可以通过使用 css 三角形来接近它。这是我制作的简短演示,它使用一些颜色技巧来接近这种效果:CSS
我没有包含
:hover
和:active
状态样式,以便您可以使用 Colorzilla 渐变生成器来混合一些颜色。以下是该按钮的演示:
http://jsfiddle.net/WUn26/
You won't get that rounded edge on the tip of the nipple of the button unless you use an image and the
:after
pseudo-element but you can come close to it by using css triangles. Here is short demo i made that uses some color trickery to come close to that effect:CSS
I did not include the
:hover
and:active
state styles so you can play around mixing some colors by using the Colorzilla gradient generator.Here is a demo of what the button looks like:
http://jsfiddle.net/WUn26/