响应式两个渐变对角线按钮 [英] Responsive two gradient diagonal button

查看:78
本文介绍了响应式两个渐变对角线按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个按对角线拆分的按钮.我想为每侧添加不同的渐变.我试过使用:before和:after分成两部分,但这需要旋转或倾斜,这意味着更改deg的响应不是很好.基本上,无论宽度和高度如何,我都需要在中心处留一个截点,以使左上角和右下角保持在不同的断点.有更好的方法吗?

I have a button that is split diagonally. I want to add a different gradient to each side. I've tried splitting in two using :before and :after but that requires a rotate or skew which means changing the deg which isn't very responsive. Basically I need the cut off in the center to stay top left and bottom right at different breakpoints regardless of the width and height. Is there a better way to do this?

.btn {
  background-image: linear-gradient(47deg, #f09 0%, #A09 100%);
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  max-width: 32rem;
  width: 100%;
  padding: 2.6rem 1rem;
  color: $white;
  text-transform: uppercase;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn:after {
  content: '';
  width: 100%;
  left: 0%;
  right: 0;
  bottom: 0;
  top: 48%;
  background-image: linear-gradient(47deg, #A09 0%, #f09 100%);
  position: absolute;
  transform: skewY(14deg);
  height: 200%;
  z-index: -1;
}

<a href="" class="btn">Button</a>

推荐答案

您可以在按钮内保留一个渐变,然后在伪元素上考虑clip-path以创建三角形并应用第二个渐变:

You can keep one gradient inside the button then consider clip-path on the pseudo element to create a triangle shape and apply the second gradient:

.btn {
  background-image: linear-gradient(to right, yellow,blue);
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 2.6rem 1rem;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 0;
}

.btn:after {
  content: '';
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: linear-gradient(to left, yellow,blue);
  -webkit-clip-path:polygon(0 0,100% 0,100% 100%);
  clip-path:polygon(0 0,100% 0,100% 100%);
  z-index: -1;
}

<a href="" class="btn">Button</a>
<a href="" class="btn">Another Button</a>

这篇关于响应式两个渐变对角线按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆