上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页
摘要: 最近任务要求某个项目有多个主题,要求某个主题不出现广告 附件参考: https://www.cnblogs.com/zqifa/p/js-cookie-1.html https://blog.csdn.net/minolk/article/details/80540750 阅读全文
posted @ 2018-10-16 10:28 前端HL 阅读(111) 评论(0) 推荐(0) 编辑
摘要: <p>语法:location.href</p> <p>功能:返回当前加载页面的完整URL</p> <p>location.href与window.location.href</p> <p>说明:location.href与window.location.href等价</p> <p>语法:locati 阅读全文
posted @ 2018-10-15 16:06 前端HL 阅读(579) 评论(0) 推荐(0) 编辑
摘要: 。。 数组练习: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta h 阅读全文
posted @ 2018-10-07 23:35 前端HL 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 关于video视频内容填充整个播放空间方法一般上传的视频都没法占满video,看起来很不美观,解决办法很简单video{ object-fit:fill;} 阅读全文
posted @ 2018-09-29 11:19 前端HL 阅读(2487) 评论(0) 推荐(1) 编辑
摘要: js移动到指定位置animate和scrollTop结合使用实例: 阅读全文
posted @ 2018-09-28 17:33 前端HL 阅读(974) 评论(0) 推荐(0) 编辑
摘要: 1.video层级最高问题 解决方案思路:当点击其他按钮触发事件时,视频层级挡住其他外层,比如会挡住弹窗,这是应该让视频暂停播放且隐藏,这是视频这个地方会空一个位置可以放一张封面占位,这样就解决视频层级最高的问题,最后你要让视频播放,点击封面在播放 2.preload预加载,iPhone不支持 au 阅读全文
posted @ 2018-09-21 11:25 前端HL 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 1.break:立即退出循环 2.continue语句:结束本次循环,继续开始下一次 continue例子2: continue例子3: 阅读全文
posted @ 2018-09-16 15:56 前端HL 阅读(217) 评论(0) 推荐(0) 编辑
摘要: css代码: select { /*将默认的select选择框样式清除*/ appearance: none; -moz-appearance: none; -webkit-appearance: none; } /*IE浏览器隐藏下拉箭头*/ select::-ms-expand { displa 阅读全文
posted @ 2018-09-12 14:50 前端HL 阅读(4263) 评论(0) 推荐(0) 编辑
摘要: 1.1for循环 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta h 阅读全文
posted @ 2018-09-10 22:49 前端HL 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 1.JavaScript算数操作符 1.1加号减号 1.2比较操作符 1.3三元运算符 1.4逻辑操作符 (1)&&:与(只要有一个条件不成立,返回false) (2)||:或(只要有一个条件成立,返回true) (3)!非 阅读全文
posted @ 2018-09-09 11:25 前端HL 阅读(119) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页