上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: 视频 特点 ckplayer是一款在网页上播放视频的免费软件,主要特点是:免费,小巧,功能强大,定制方便。 官网与文档 http://www.ckplayer.com/ 引入 <script type="text/javascript" src="js/ckplayer.js" ></script> 阅读全文
posted @ 2021-08-23 13:22 黄哈哈。 阅读(183) 评论(0) 推荐(0) 编辑
摘要: /* webkit, opera, IE9 (谷歌浏览器)*/ ::selection { background:lightblue; color:#000; } /* mozilla firefox(火狐浏览器) */ ::-moz-selection { background:lightblue 阅读全文
posted @ 2021-08-23 11:54 黄哈哈。 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 二维码生成 一、引入 qrcode.js获取:二维码插件 <script src="jquery.min.js"></script> <script src="qrcode.js"></script> 二、使用 HTML结构 <!--logo图片(不用logo图片,可以不要)--> <img id= 阅读全文
posted @ 2021-08-23 11:43 黄哈哈。 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 插件-pagination 一、官网与文档 http://www.jq22.com/demo/pagination20160204/ https://github.com/Maxiaoxiang/jQuery-plugins 二、引入 <script src="js/jquery-1.8.3.min 阅读全文
posted @ 2021-08-23 09:38 黄哈哈。 阅读(37) 评论(0) 推荐(0) 编辑
摘要: jQuery3D轮播插件 一、官网与文档 官网地址:https://github.com/fredleblanc/roundabout 二、引入 引用jquery.js和jquery.roundabout.js、jquery.easing.js <script src="js/jquery-1.8. 阅读全文
posted @ 2021-08-22 18:14 黄哈哈。 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 滚动条美化 一、官网与文档 https://nicescroll.areaaperta.com/ https://github.com/inuyaksa/jquery.nicescroll 二、引入 引用jquery.js和jquery.nicescroll.js <script src="js/j 阅读全文
posted @ 2021-08-20 22:17 黄哈哈。 阅读(721) 评论(0) 推荐(0) 编辑
摘要: css 实现上右下左三角 右三角 border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 6px solid transparent; border-left: 8px solid 阅读全文
posted @ 2021-08-20 09:05 黄哈哈。 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 透明度兼容问题 .box1{ background: #000; /*ie8及以下不兼容*/ opacity: .7; /*兼容ie8及以下*/ filter: Alpha(Opacity=70); } .box2{ /*ie8及以下不兼容 */ background: rgba(0,0,0,.7) 阅读全文
posted @ 2021-08-19 23:20 黄哈哈。 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 字体渐变 代码: /*方法1 left top, right bottom x1 y1, x2 y2 */ .txt1{ color:#ac5d9a; -webkit-background-clip: text; -webkit-text-fill-color: transparent; backg 阅读全文
posted @ 2021-08-19 23:11 黄哈哈。 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 页面回到顶部 $('#toTopBtn').on("click", function (e) { e.preventDefault(); //获取当前位置 var T = document.documentElement.scrollTop || document.body.scrollTop; v 阅读全文
posted @ 2021-08-18 11:01 黄哈哈。 阅读(52) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页