使用CSS(单元素解决方案)创建拉长的六边形按钮
在按钮设计领域,拉长的六边形形状经常引人注目。虽然通常使用多个元素来实现,但是否可以仅使用一个元素来创建这样的按钮?
答案是肯定的!这是实现这种独特设计的创造性解决方案:
构建基本形状
实现倾斜效果
定位元素
用边框和颜色强调
交互效果(可选)
代码示例
/* General Button Style */ .button { position: relative; display: block; background: transparent; width: 300px; height: 80px; line-height: 80px; text-align: center; font-size: 20px; text-decoration: none; text-transform: uppercase; color: #e04e5e; margin: 40px auto; font-family: Helvetica, Arial, sans-serif; box-sizing: border-box; } .button:before, .button:after { position: absolute; content: ''; width: 300px; left: 0px; height: 34px; z-index: -1; } .button:before { transform: perspective(15px) rotateX(3deg); } .button:after { top: 40px; transform: perspective(15px) rotateX(-3deg); } /* Button Border Style */ .button.border:before, .button.border:after { border: 4px solid #e04e5e; } .button.border:before { border-bottom: none; /* to prevent the border-line showing up in the middle of the shape */ } .button.border:after { border-top: none; /* to prevent the border-line showing up in the middle of the shape */ } /* Button hover styles */ .button.border:hover:before, .button.border:hover:after { background: #e04e5e; } .button.border:hover { color: #fff; }
<a href="#" class="button ribbon-outset border">Click me!</a>
通过利用这种巧妙的方法,您只需使用一个元素即可轻松创建迷人的细长六边形按钮。这种技术为任何用户界面增添了优雅和独特的感觉。
以上是单个 CSS 元素可以创建拉长的六边形按钮吗?的详细内容。更多信息请关注PHP中文网其他相关文章!