码迷,mamicode.com
首页 > 其他好文 > 详细

播放按钮

时间:2015-04-09 15:26:15      阅读:98      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!