• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
pengpenglin
乐于工作,享受生活。
博客园    首页    新随笔    联系   管理    订阅  订阅
三角形及选中取消按钮的css代码

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>

 

  

  

posted on 2015-08-18 15:54  pengpenglin  阅读(604)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3