如何使用CSS在菱形内创建标题?

时间:2015-11-08 13:32:44

标签: html css css3 css-shapes

我想创建一个样式处理,类似于:

enter image description here

这样的事情怎么样?

2 个答案:

答案 0 :(得分:8)

使用CSS转换:

您可以使用两个伪元素和CSS旋转变换来创建菱形,如下面的代码段所示。这将使文本不受变换的影响,因此定位它会相对容易。

scaleDiv生成具有相等边的菱形,而额外的rotateZ(45deg)负责拉伸的外观,使得两侧看起来长度不等。

文本定位非常简单,只需将其与中心对齐,然后将rotateX(45deg)设置为与容器的line-height相同即可。请注意,这种垂直居中方法仅在文本在一行中时才有效。如果它可以跨越多行,那么它应该放在一个额外的元素中,height变换应该用于垂直居中。



translateY(-50%)

.diamond {
  position: relative;
  height: 200px;
  width: 200px;
  line-height: 200px;
  text-align: center;
  margin: 10px 40px;
}
.diamond:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transform: rotateX(45deg) rotateZ(45deg);
  box-shadow: 0px 0px 12px gray;
}
.diamond:after {
  position: absolute;
  top: 10px;
  left: 10px;
  content: '';
  height: calc(100% - 22px);  /* -22px is 2 * 10px gap on either side - 2px border on either side */
  width: calc(100% - 22px);  /* -22px is 2 * 10px gap on either side - 2px border on either side */
  border: 1px solid orange;
  transform: rotateX(45deg) rotateZ(45deg);
}




使用SVG:

使用SVG <div class='diamond'> Text Here </div>元素也可以创建相同的形状,而不是CSS变换。样本可在以下代码段中找到。

&#13;
&#13;
path
&#13;
.diamond {
  position: relative;
  height: 200px;
  width: 300px;
  line-height: 200px;
  text-align: center;
}
.diamond svg {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
}
path.outer {
  fill: white;
  stroke: transparent;
  -webkit-filter: url(#dropshadow);
  filter: url(#dropshadow);
}
path.inner {
  fill: transparent;
  stroke: orange;
}
&#13;
&#13;
&#13;

答案 1 :(得分:2)

钻石是否必须具有不同的宽度和高度?否则你可以用伪元素转换一个正方形。

body {
  text-align: center;
  padding-top: 30px;
}
.diamond {
  width: 100px;
  height: 100px;
  position: relative;
  margin-top: 25px;
  display: inline-block;
}
.diamond:before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 100px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -webkit-transition: border-color 0.3s;
  -moz-transform: rotate(45deg);
  -moz-transition: border-color 0.3s;
  transform: rotate(45deg);
  box-shadow: 0px 0px 21px -2px rgba(0, 0, 0, 0.25);
}
.diamond-inner {
  width: 80px;
  height: 80px;
  position: relative;
  margin-top: 25px;
  display: inline-block;
}
.diamond-inner:before {
  position: absolute;
  display: block;
  content: "";
  width: 80px;
  height: 80px;
  left: 0;
  top: -15px;
  right: 0;
  bottom: 0;
  border: 1px solid #9C9819;
  -webkit-transform: rotate(45deg);
  -webkit-transition: border-color 0.3s;
  -moz-transform: rotate(45deg);
  -moz-transition: border-color 0.3s;
  transform: rotate(45deg);
}
<div class="diamond">
  <div class="diamond-inner">
    Test
  </div>
</div>

另见:JSFiddle