图像上的CSS箭头(不使用边框)

时间:2013-03-03 18:31:36

标签: css css3 mask css-shapes pseudo-element

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

#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;
 }

我正试图找到一种方法来创建那种除了主要艺术之外没有任何图像的面具形状。有没有人实现过这个?如果有人有任何想法,将非常感激。

1 个答案:

答案 0 :(得分:8)

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

DEMO

<强> 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: '';
}