如何使用 CSS 在菱形内创建标题?
Posted
技术标签:
【中文标题】如何使用 CSS 在菱形内创建标题?【英文标题】:How would I create a title inside a diamond shape, with CSS? 【发布时间】:2016-02-09 05:41:10 【问题描述】:我想创建一个样式处理,类似于这样:
这样的事情如何运作?
【问题讨论】:
你知道 SVG,我不知道它是否适用于你的情况。但我认为这更好。 【参考方案1】:使用 CSS 变换:
您可以使用两个伪元素和 CSS 旋转变换来创建菱形形状,如下面的 sn-p 所示。这将使文本不受变换的影响,因此定位它会相对容易。
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);
<div class='diamond'>
Text Here
</div>
使用 SVG:
同样的形状也可以使用 SVG path
元素而不是 CSS 变换来创建。示例可在以下 sn-p 中找到。
.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;
<div class='diamond'>
<svg viewBox='0 0 100 100' preserveAspectRatio='none'>
<filter id="dropshadow" >
<feGaussianBlur in="SourceAlpha" stdDeviation="1" />
<feOffset dx="0" dy="0" result="offsetblur" />
<feMerge>
<feMergeNode/>
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<path d='M2,50 50,2 98,50 50,98z' class='outer' />
<path d='M8,50 50,8 92,50 50,92z' class='inner' />
</svg>
Text Here
</div>
<!-- Filter Code Adopted from http://***.com/questions/6088409/svg-drop-shadow-using-css3 -->
【讨论】:
【参考方案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
【讨论】:
以上是关于如何使用 CSS 在菱形内创建标题?的主要内容,如果未能解决你的问题,请参考以下文章