随笔分类 - 前端
前端代码
摘要:进入dist的目录 执行 这个表示端口是8900 如果用这种命令 这个窗口不能关闭 要一直开着 python -m SimpleHTTPServer 8900 后台运行 nohup python -m SimpleHTTPServer 8900 &
阅读全文
摘要:demo <script src="https://cdn.bootcss.com/crypto-js/3.1.9-1/crypto-js.min.js"></script> <script> alert(aesDecrypt(aesEncrypt("yvioo","wa1234535"),"wa1
阅读全文
摘要:官方文档:https://dplayer.diygod.dev/zh/guide.html#%E5%8F%82%E6%95%B0 abort 视频终止加载 canplay 提示该视频已准备好开始播放 canplaythrough 提示视频能够不停顿地一直播放: durationchange 视频的时
阅读全文
摘要://判断配置文件是否开启日志调试 是否输出日志 true 输出 false 不输出 var logDebug = true; console.log = (function (oriLogFunc) { return function () { if (logDebug) { oriLogFunc.
阅读全文
摘要:设置横屏 plus.screen.lockOrientation('landscape-primary'); 竖屏 plus.screen.lockOrientation('portrait') 然后自己根据网页集成的播放器监听是否视频全屏了,然后设置不同代码即可 比如 我这个是七牛播放器的 只是d
阅读全文
摘要:先引入jq 封装好的方法 <script src="//cdn.bootcss.com/jquery-cookie/1.4.1/jquery.cookie.min.js"></script> 设置新的cookie $.cookie('name','yvioo'); //设置一个值为'yvioo'的c
阅读全文
摘要:设置默认选中可在option 中添加 selected = "selected",具体举例如下: <option value="2" selected="selected">test2</option> <select id="citySel" class="select"> <option val
阅读全文
摘要:demo <script src="https://cdn.bootcss.com/crypto-js/3.1.9-1/crypto-js.min.js"></script> <script> alert(desDecrypt(desEncrypt("yvioo","wa1234535"),"wa1
阅读全文
摘要:FileSaver.js /* FileSaver.js * A saveAs() FileSaver implementation. * 1.3.2 * 2016-06-16 18:25:19 * * By Eli Grey, http://eligrey.com * License: MIT *
阅读全文
摘要:m3u8测试播放地址 https://leshiyuncdn.ahjunqin.top/20231221/11lQU4M0/index.m3u8 播放页面html页面代码 <script src="//cdn.jsdelivr.net/npm/hls.js@latest"></script> <di
阅读全文
摘要:公开的mqtt服务器 https://www.hivemq.com/mqtt/public-mqtt-broker/ <body> <input id="_message" width="300px" height="200px"> <button id="_sendBtn">发送消息</butto
阅读全文
摘要:word-break: break-all;
阅读全文
摘要:这里用了第三方的js 官方地址:https://github.com/joewalnes/reconnecting-websocket 引入js reconnecting-websocket.min.js 或者 reconnecting-websocket.js 如果github访问慢 我也上传了一
阅读全文
摘要:父级页面:mian.html 子页面1:top.html 子页面2:index.html 页面关系 <div onclick="_top()">调用contentTop页面的alertTop方法</div> <iframe id="contentTop" name="contentTop" fram
阅读全文
摘要:iframe.html 首页 <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device
阅读全文
摘要:我们可以重写一个方法 (function ($) { var oldHTML = $.fn.html; $.fn.formhtml = function () { if (arguments.length) return oldHTML.apply(this, arguments); $("inpu
阅读全文
摘要:function getDate(time){ var date =(new Date(parseInt(time))).toLocaleDateString() return date; } time就是要转换的时间戳
阅读全文