html5
rrzzhang
这个作者很懒,什么都没留下…
展开
-
仿抖音网页版自定义视频进度条
先上一个完成后的效果图: 在将视频垂直居中布局后: 1.删除视频原有的控制组件,去掉controls属性,html如下: <video id="video" :src="report.videoUrl" autobuffer autoplay="autoplay" preload="auto" x5-playsinline="" playsinline="" webkit-playsinline="" width="100%" class="headVideo" ></vide原创 2020-08-04 15:08:51 · 1034 阅读 · 0 评论 -
选项卡样式重置
我发布的资源 否 是 .checks input{width:20px; height:20px; border-radius:50%;border:solid 1px #498ee0; -webkit-appearance:none;outline:none; margin:13px 5px 0 20px;} .check原创 2016-05-03 11:52:31 · 563 阅读 · 0 评论 -
HTML5文本细节
textarea保存换行符和空格解决方案: this.submitInfo.healDesc=$(".methodText").val().replace(/\r\n/g, '<br/>').replace(/\n/g, '<br/>').replace(/\s/g, ' '); <sub></sub>文本下标 <sup>&...原创 2016-04-18 14:20:31 · 407 阅读 · 0 评论 -
倒计时
var timebox=document.getElementById("CountMsg"); var datetime='20161012221935'; var yyy=datetime.substr(0,4); var EndTime= new Date(yyy,10,12,22,19,35); function GetRTime(){原创 2016-09-04 15:42:34 · 339 阅读 · 0 评论