- 博客(21)
- 收藏
- 关注
原创 微信sdk分享好友
引入微信官方文件<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>微信sdk需要用当前页面的url获取到微信config的参数,wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值...
2020-04-21 13:46:50 241
原创 微信公众号背景音乐自动播放
wx.ready(function() { let audio = document.getElementById("audio"); audio && audio.play(); });
2020-04-21 13:21:43 4288 1
原创 安卓和ios微信sdk选择图片拍照上传
wx.getLocalImgData({ localId: localId, // 图片的localID success: function(res) { var u = navigator.userAgent; var isiOS = !!u.match(/\(i[^;]+;( U;)...
2020-04-21 13:20:36 266
原创 css小动画 抖动 呼吸
按钮呼吸灯效果.next-btn { width: 2.2rem; height: 0.66rem; position: fixed; bottom: 1rem; background-image: url(../assets/images/game_next.png); background-size: 100% 100%; z-index: 10; anima...
2020-04-19 15:36:06 265
原创 列表页滚动
created: function () { var that=this; // 设置列表高度 this.clientHeight = document.body.clientHeight - 2.5 * 100 * (document.body.clientWidth / 750); // 列表高度随窗口大小改变 ...
2020-04-14 11:31:36 85
原创 jquery复制文字到剪贴板
需引用jquery $(function () { $('.copy_btn').on('click',function () { let text = $(this).siblings('.list_info').find('.copy_text').text(); let oInput = document.createElement...
2020-04-14 11:31:20 157
原创 rem布局设置
// JavaScript Document(function px2rem(doc, win) { var docEl = doc.documentElement, resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize', recalc = function (...
2020-04-14 11:30:51 98
原创 国际版倒计时
function countdown(that,i) { // i是时区 以埃及时间为例,东二区 2 var sTime = new Date(that.start_time)|| [] ; var EndTime = new Date(that.end_time)|| [] ; var localTime = new Date().getTime(); v...
2020-04-14 11:30:34 114
原创 vue复制文字到剪贴板
<script src="js/clipboard.min.js"></script> doCopy: function (val) { var clipboard = new ClipboardJS('.copy', { text: ()=> ...
2020-04-14 11:30:18 90
原创 检测软键盘抬起
(function (doc, win) {const docEl = doc.documentElement,resizeEvt = ‘orientationchange’ in window ? ‘orientationchange’ : ‘resize’,clientHeight= docEl.clientHeight, /进入页面时 可视区域高端/recalc = function...
2020-04-14 11:30:00 101
原创 小程序封装弹出窗
小程序页面提示弹出窗/** * 页面提示 */const showToast = (title, icon, time) =&gt; { wx.showToast({ title: title, icon: icon ? icon : 'none', duration: time ? time : 1200 })}/** * 页面弹框 * title...
2020-04-14 11:29:45 103
原创 微信小程序复制邀请码
copy_invitation: function () { wx.setClipboardData({ data: this.data.text_code, success: function (res) { util.showToast('复制成功') } }) },
2020-04-14 11:29:34 917
原创 微信小程序长按保存二维码图片
长按事件bindlongpress='saveImgToPhotosAlbumTap' saveImgToPhotosAlbumTap: function() { wx.downloadFile({ url: this.data.code_img, success: function (res) { console.log(res) ...
2020-04-14 11:28:53 457
原创 事件监听及禁止默认事件
document.addEventListener( "touchmove", function(e) { e.preventDefault(); }, this.isPassive() ? { capture: false, passive: false ...
2020-04-14 11:25:48 318
原创 vue的keep-alive缓存
结合router 缓存部分界面使用$route.meta的keepAlive属性:<keep-alive> <router-view v-if="$route.meta.keepAlive"></router-view></keep-alive><router-view v-if="!$route.meta.keepAlive"...
2019-12-27 10:25:52 115
原创 时间戳倒计时自定义方法
封装时间倒计时,时间戳 var that=this var count=that.end_time-that.now_time;//时间差 countDown(count,that)在这里插入代码片function countDown(count,that){ that.hour=addZero(Math.floor(count/60/60%2...
2019-02-26 09:06:57 652
原创 弹出层弹出时禁止滑动
const moveStop = function(e){e.preventDefault()};添加阻止事件:function noScroll(){ document.body.style.overflow='hidden';//关闭滚动条 document.addEventListener("touchmove",moveStop,false);}移除阻止事件:...
2019-02-15 10:15:48 945
原创 cavers截图
<div id='screenshots'></div>//调用截图方法 shotsImg:function(){ this.pop_show=false;//关闭弹窗 this.can_click = false; var that = this ...
2019-01-31 16:01:14 272
原创 实现简单计算器
Document + - * / = &lt;script type="text/javascript"&gt; //查找页面元素 var b=document.getElementById('btn'); var slt=document.getElementById('sel'); var txt1=document.getEle.
2018-09-18 20:40:38 147
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人