html – 带垂直渐变背景的箭头按钮

我需要做这个按钮:

通常当我需要使用渐变和边框的箭头按钮时,我添加.button:在绝对定位的元素之前,使用transform:rotate(-45deg)translate(%SOMETHING%);并添加背景:linear-gradient(45deg,%COLORS%);.但现在我需要按钮,箭头角度不正确.我该怎么做?

解决方法

您可以使用以下选项来设计此按钮:before selector:
.button {
   width: 120px;
   height: 50px;   
   position: relative;
   -moz-border-radius:    5px;
   -webkit-border-radius: 5px;
   border-radius:         5px;
   border:1px solid #4d7a9c; 
   position:relative;
   color:white;
   font-size:18px;
   
   background: #238fe7; /* Old browsers */
  background: -moz-linear-gradient(top,#238fe7 0%,#156fba 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,#156fba 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,#156fba 100%); /* W3C,IE10+,FF16+,Chrome26+,Opera12+,Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#238fe7',endColorstr='#156fba',GradientType=0 ); /* IE6-9 */ 
 }

.button:before {
  content: "";
  position: absolute;
  transform: scaleX(0.6) rotate(45deg);
  height: 38px;
  width: 38px;
  right:-18px;
  top:5px;
  border-radius:  5px;
  z-index:-1px;
  
  background: #238fe7; /* Old browsers */
  background: -moz-linear-gradient(-45deg,#156fba 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg,Safari5.1-6 */
  background: linear-gradient(135deg,GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
<button class="button">Text</button>

相关文章

操作步骤 1、进入elasticsearch的plugin,进入ik。进入config。 2、在config下面建立以.dic为后缀的字典...
lengend data数据中若存在&#39;&#39;,则表示换行,用&#39;&#39;切割。
代码实现 option = { backgroundColor: &amp;#39;#080b30&amp;#39;, tooltip: { trigger: &...
问题原因 原因在于直接在js中取的变量并复制给var变量。 于是就变成这样。 解决办法 var data = &#...
前言 最近做了一个调查问卷导出的功能,需求是将维护的题目,答案,导出成word,参考了几种方案之后,选...
对于很多人来说,用字符编码都是熟能生巧,而不清楚为什么是那样的字符编码,所以我在这列了一个表,翻...