上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 63 下一页
摘要: audio不仅是一个标签,也是window下的一个对象,作为对象,具有一些对象属性和对象方法: 对象属性: currentTime:获取当前播放时间 duration:获取歌曲的总时间 pause:是否暂停,返回布尔值 对象方法: play():播放 pause():暂停 load():重新加载 < 阅读全文
posted @ 2020-01-13 11:46 吴小明- 阅读(9130) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-01-13 11:18 吴小明- 阅读(4092) 评论(0) 推荐(0) 编辑
摘要: 效果一:(css+dom实现) 代码: <!doctype html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable 阅读全文
posted @ 2020-01-09 16:31 吴小明- 阅读(1265) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-01-08 15:57 吴小明- 阅读(157) 评论(0) 推荐(0) 编辑
摘要: <input type="text" bindinput="input" /> <button bindtap="btnClick">点击</button> Page({ data:{ inputVal:null } input(e){ this.setData({ inputVal:e.detai 阅读全文
posted @ 2020-01-02 21:00 吴小明- 阅读(5312) 评论(0) 推荐(2) 编辑
摘要: <?php $data = array( array( 'id' => 5698, 'first_name' => 'Bill', 'last_name' => 'Gates', ), array( 'id' => 4767, 'first_name' => 'Steve', 'last_name' 阅读全文
posted @ 2019-12-28 19:21 吴小明- 阅读(260) 评论(0) 推荐(0) 编辑
摘要: for of只能遍历数组,for in可以遍历数组和对象 推荐用for of遍历数组,for in遍历对象 阅读全文
posted @ 2019-12-28 14:26 吴小明- 阅读(853) 评论(0) 推荐(0) 编辑
摘要: function onet(){ // 得到时间戳 毫秒 var time=new Date().getTime() // 将时间戳转换为 Thu Dec 26 2019 11:22:22 GMT+0800 (中国标准时间) var timer=new Date(time) // 格式化为年月日等等 阅读全文
posted @ 2019-12-27 10:31 吴小明- 阅读(2616) 评论(0) 推荐(0) 编辑
摘要: <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <input type="checkbox" > <div></div> var inputs=$( 阅读全文
posted @ 2019-12-25 21:39 吴小明- 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 框架 小程序配置 页面配置 属性 类型 默认值 说明 enablePullDownRefresh boolean false 是否开启当前页面下拉刷新 onReachBottomDistance number 50 页面上拉触底事件触发时距页面底部距离(px) 如果是全局都需要下拉刷星,在app.j 阅读全文
posted @ 2019-12-21 10:21 吴小明- 阅读(587) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 63 下一页