码迷,mamicode.com
首页 > Web开发 > 详细

三角形及选中取消按钮的css代码

时间:2015-08-18 18:00:33      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

1.三角形:

  1.用传统的方式:

.triangle{
  background:blue transparent transparent  transparent;
  border-width:100px 60px 0 60px;
  border-style:solid ;
  height:0 ;width:0;      
}
  <div class="triangle">
    </div>

  2.用svg实现:

.svg-triangle{
    margin:0 auto; width:10px;height:100px;
}
.svg-triangle polygon{
    fill:blue;stroke:yellow; stroke-width:2px;
}

  <svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="svg-triangle">
        <polygon points="0,0 100,0 50,100"></polygon>
    </svg>

2.移动端的选中取消按钮:

 .mui-switch {
            width: 52px;
            height: 31px;
            position: relative;
            border: 1px solid #dfdfdf;
            background-color: #fdfdfd;
            box-shadow: #dfdfdf 0 0 0 0 inset;
            border-radius: 20px;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            background-clip: content-box;
            display: inline-block;
            -webkit-appearance: none;
            user-select: none;
            outline: none;
        }

            .mui-switch:before {
                content: ‘‘;
                width: 29px;
                height: 29px;
                position: absolute;
                top: 0px;
                left: 0;
                border-radius: 20px;
                border-top-left-radius: 20px;
                border-top-right-radius: 20px;
                border-bottom-left-radius: 20px;
                border-bottom-right-radius: 20px;
                background-color: #fff;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
            }

            .mui-switch:checked {
                border-color: #64bd63;
                box-shadow: #64bd63 0 0 0 16px inset;
                background-color: #64bd63;
            }

                .mui-switch:checked:before {
                    left: 21px;
                }
 .mui-switch.mui-switch-anim {
                transition: border cubic-bezier(0, 0, 0, 1) 0.4s, box-shadow cubic-bezier(0, 0, 0, 1) 0.4s;
            }

                .mui-switch.mui-switch-anim:before {
                    transition: left 0.3s;
                }

                .mui-switch.mui-switch-anim:checked {
                    box-shadow: #64bd63 0 0 0 16px inset;
                    background-color: #64bd63;
                    transition: border ease 0.4s, box-shadow ease 0.4s, background-color ease 1.2s;
                }

                    .mui-switch.mui-switch-anim:checked:before {
                        transition: left 0.3s;
                    }

<label>
<input class="mui-switch mui-switch-anim" type="checkbox">
</label>

 

  

  

三角形及选中取消按钮的css代码

标签:

原文地址:http://www.cnblogs.com/pengpenglin/p/4739632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!