3

我正在尝试找出一种方法来使用将箭头附加到标头图像的底部,就像这样。我已经看到了许多关于如何使用 CSS3 创建箭头的方法,但我发现它们几乎总是使用边框属性来实现它。通常是这样的:

#demo {
   width: 100px;
   height: 100px;
   background-color: #ccc;
   position: relative;
   border: 4px solid #333;
 }

#demo:after {
   border-width: 9px;
   border-left-color: #ccc;
   top: 15px;
 }

我试图找到一种方法来创建这种面具形状,除了主要艺术之外没有任何图像。有没有人做到这一点?如果有人有任何想法,将不胜感激。

4

1 回答 1

8

如果您正在寻找随图像调整大小的箭头,那么可以。

演示

HTML

<div class='head'></div>
<div class='arrow'></div>

CSS

.head {
  margin: 0 auto;
  width: 0; height: 0;
  /* take into account ratio of the image but with 20% less for the height */
  padding: 12.5% 30%;
  background: url(background.jpg);
  background-size: cover;
}
.arrow {
  overflow: hidden;
  position: relative;
  margin: -4.9% auto;
  padding: 4.42%; /* 25% of head's padding * sqrt(2) */
  width: 0;
  transform: rotate(45deg);
  background: red;
}
.arrow:after {
  position: absolute;
  bottom: 50%; left: 50%;
  margin: -70.71%; /* half of the width or height */
  width: 141.42%; height: 141.42%; /* sqrt(2)*141.42% */
  transform: rotate(-45deg);
  background: url(background.jpg) 50% 100%;
  background-size: 480% 250%; /* take into account ratio of the image */
  content: '';
}
于 2013-03-03T22:38:26.223 回答