首页 > 其他 > 详细

播放按钮

时间:2015-04-09 15:23:08      阅读:291      评论:0      收藏:0      [点我收藏+]

技术分享

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>
    <style>
        body {
            background: black;
        }
        .play {
            position:relative;
            width: 86px;
            height: 86px;
            border: 12px solid rgba(255,255,255,.8);
            border-radius: 50px;
            box-sizing: border-box;
        }
        .play:after {
            content: ‘‘;
            position: absolute;
            top: 14px;
            left: 23px;
            width: 0;
            height: 0;
            border-width: 17px 0 17px 27px;
            border-color: transparent rgba(255,255,255,.8);
            border-style: dashed solid;
        }
    </style>
</head>
<body>
    <div class="play"></div>
</body>
</html>

 

播放按钮

原文:http://www.cnblogs.com/jzm17173/p/4409547.html

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