CSS3实现的player播放按钮_html/css_WEB-ITnose

完成的效果如下

 

立即学习“前端免费学习笔记(深入)”;

查看效果并下载

 

立即学习“前端免费学习笔记(深入)”;

Step 1:先了解border的原理:

 

立即学习“前端免费学习笔记(深入)”;

 

立即学习“前端免费学习笔记(深入)”;

Step 2:HTML代码结构

 

立即学习“前端免费学习笔记(深入)”;

Html代码   

  

          Start                  Start                  Start                  Start       Start                  Start       Start                 Start       Start          

 

立即学习“前端免费学习笔记(深入)”;

 

立即学习“前端免费学习笔记(深入)”;

Step 3:画背景圆,position:relative

 

立即学习“前端免费学习笔记(深入)”;

 

立即学习“前端免费学习笔记(深入)”;

Css代码   

.playContainer li { position: relative; float: left; border: 25px solid #404040; color: #404040; height: 0; width:0; -webkit-border-radius: 100%; -moz-border-radius: 100%; -o-border-radius: 100%; border-radius: 100%; margin: 0 20px; }  

 

立即学习“前端免费学习笔记(深入)”;

 

立即学习“前端免费学习笔记(深入)”;

 

立即学习“前端免费学习笔记(深入)”;

 

立即学习“前端免费学习笔记(深入)”;

Step 4:画stop按钮,要让按钮居中。

 

立即学习“前端免费学习笔记(深入)”;

按钮相对外层圆圈绝对定位,从圆圈的中心开始,所以要调整top和left值

 

立即学习“前端免费学习笔记(深入)”;

stop按钮边长14px,相对原点需要向上、向左移动7个像素,居中。

 

立即学习“前端免费学习笔记(深入)”;

全部的CSS如下:

 

立即学习“前端免费学习笔记(深入)”;

 

立即学习“前端免费学习笔记(深入)”;

Css代码   

   .playContainer { position: relative; float: left; background: rgba(0, 0, 0, 0.8); padding: 20px; }   .playContainer li { position: relative; float: left; border: 25px solid #404040; color: #404040; height: 0; width:0; -webkit-border-radius: 100%; -moz-border-radius: 100%; -o-border-radius: 100%; border-radius: 100%; margin: 0 20px; }   .playContainer a { border-style: solid; text-indent: -9999px; position: absolute; top: -8px; left: -3px;  }      .playBtn a { border-color: transparent transparent transparent #fff; border-width: 8px 0 8px 12px;  width: 0; height: 0; }   .pauseBtn a { border-color: transparent white;  border-width: 0 6px; height: 15px; width: 6px; left: -9px; }   .stopBtn a { border: 7px solid #fff; height: 0; width: 0; left: -7px; top: -7px;}   .forwardBtn a { border-left-width: 8px; left: 1px; }   .forwardBtn a:first-child { margin-left: -7px;  }      .rewindBtn a { border-width: 8px 8px 8px 0; border-color: transparent #fff transparent transparent; width: 0; height: 0; }   .rewindBtn a:first-child { margin-left: -7px; }      .ejectBtn a.arrow { border-width: 0 8px 8px 8px; border-color: transparent transparent #fff transparent; top:-26px; left:-8px; }   ectBtn a.dash { border-width: 0 0 4px; border-color: transparent transparent #fff; height: 0; width:16px; left: -8px; top: 4px; } 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3092323.html

(0)
上一篇 2025年3月28日 13:54:21
下一篇 2025年3月28日 13:54:30

AD推荐 黄金广告位招租... 更多推荐

相关推荐

发表回复

登录后才能评论