带把手设计的按钮纯CSS无图像

时间:2015-05-18 07:47:39

标签: html css css3 css-shapes

我想设计一个如下所示的按钮:

enter image description here

我知道这是一个本地化的问题,但我似乎无法让它看起来像没有图片

1 个答案:

答案 0 :(得分:1)

我使用了:before:after伪元素来实现和实现这样的效果。

然后,您可以使用CSS转换属性的组合。像透视旋转的东西应该创建梯形,然后在另一个伪元素上使用边框来生成线条。

快速模型演示将是:



.demowrapper {
  margin: 0 auto;
  height: 500px;
  background: lightgray;
  width: 300px;
  box-shadow: 0 0 20px 5px dimgray;
  position: relative;
}
button {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 30px;
  background: tomato;
  display: inline-block;
  border: 0;
  cursor: pointer;
}
button:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 50px;
  background: inherit;
  top: -18px;
  left: 50%;
  border-radius: 5px 5px 0 0;
  transform: translateX(-50%) perspective(50px) rotateX(45deg);
}
button:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  top: -8px;
  left: 50%;
  transform: translate(-50%);
}
button:hover{
  background:yellow;

<div class="demowrapper">
  <button>SELECT your Button</button>
</div>
&#13;
&#13;
&#13;