Jump to content
  • 0

Закруглённые треугольники с полупрозрачным фоном


Crystal-3
 Share

Question

Всем привет.
Озадачил меня дизайнер, ничего хорошего не могу придумать, гугл тоже отказывается помогать.
Нужно сделать вот такие штуки http://prntscr.com/nsyswi
Задача усложнена ещё тем, что фон должен быть пролупрозрачный.
Буду благодарна за подсказку.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Мое извращение:

Нужные размеры можно либо подобрать, либо использовать JS для автоматизации. Но, имхо, лучше с SVG разобраться, так как в моем примере не получится залить полупрозрачным фоном 

See the Pen pmqBMv by Alexandr (@AlexZaw) on CodePen.

<div class="wrap">
  <ul>
    <li>
      <div class="el">Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsam, cumque? lorem lorem lorem lorem lorem lorem</div><span></span>
    </li>
    <li>
      <div class="el">Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsam, cumque? lorem lorem lorem</div>
    <span></span></li>
  </ul>
</div>
*, :before, :after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wrap{
  background: url(http://placekitten.com/1000);
}
ul{
  margin: 50px;
  list-style: none;
  display: inline-block;
}
li{
  margin-bottom: 30px;
  position: relative;
}
.el{
  position: relative;
  padding: 10px;
}
.el:before,.el:after, li:before,li:after,span:before,span:after{
  content: '';
  position: absolute;
  height: 100%;
  width: calc(50% - 40px);
  top: 0;
  border: 2px solid #ccc;  
}
.el:before{
  border-radius: 50px 0 0 50px;
  border-right: none;
  left: 0;
}
.el:after{
  right: 0;
  border-left: none;
  border-radius: 0 50px 50px 0;
}
li:before,li:after,span:before,span:after{
  width: 50px;
  top: calc(-100% + 2px);
  left: 50%;
  transform: translateX(calc(-100% + 2px));
  border: 2px solid #ccc;
  border-radius: 0 0 50% 0;
  border-top: none;
  border-right: none;
  border-left: none;

}
li:after{
  transform: scaleX(-1);
}
span{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
span:before{
  top: calc(100% - 2px);
  transform: translateX(calc(-100% + 2px)) scaleY(-1);
}
span:after{
  top: calc(100% - 2px);
  transform: scale(-1,-1);
}

 

  • Thanks 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy