首页 > 其他 > 详细

按钮右上角倒三角样式

时间:2021-02-10 12:52:19      阅读:31      评论:0      收藏:0      [点我收藏+]

按钮样式如下图:

  技术分享图片

样式直接贴上去:

.box {
  width: 120px;
  height: 35px;
  position: relative;
  background: white;
  overflow: hidden;
  border: 1px solid #cccccc;
  border-radius: 5px;
  float: left;
  margin-left: 10px;
  cursor: pointer;
}
.box .box-con {
  width: 40px;
  height: 50px;
  position: absolute;
  background: rgb(93, 229, 253);
  top: -30px;
  right: -30px;
  transform: rotate(45deg);
}

.box .box-con span {
  position: absolute;
  bottom: 0;
  display: block;
  width: 60px;
  text-align: center;
  transform: rotate(-45deg);
}
.box2{
  border-radius:5px;
  float:left;
  margin-left:10px;
  border: 1px solid #cccccc;
  width:120px;
  height:35px;
  background: #ebebec;
  cursor:pointer;
}

页面按钮:

<template>
  <div class="box" style="border-radius:5px;float:left;margin-left:10px;" @click="changeAward()">

    <div style="text-align: center;margin-top: 5px;"><span style="color:#cd7f32">按钮</span></div>
    <div class="box-con">
      <span style="color: blue;margin-left: -34%;">?</span>
    </div>
  </div>
</template>

上面代码的?可以换成其他符号。

样式.box2是没有倒三角,有时候需要切换,点击才显示倒三角选中样式。

可以在点击事件changeAward方法中赋js样式:

  document.getElementById(’id‘).className=‘box‘; (box和box2切换)
 
拓展:可以用v-for循环出一个list,用index作为每个按钮的id,处理需要的业务。
 
伴随Dancer In The Dark~,get out of hear !!!

 

按钮右上角倒三角样式

原文:https://www.cnblogs.com/UsefulIdiot/p/14395006.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!