上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页
摘要: git stash 当本地代码不想提交覆盖,又忙于其他分支,可以先储存起来。 git stash命令的作用就是将目前还不想提交的但是已经修改的内容进行保存至堆栈中,后续可以在某个分支上恢复出堆栈中的内容。这也就是说,stash中的内容不仅仅可以恢复到原先开发的分支,也可以恢复到其他任意指定的分支上。 阅读全文
posted @ 2019-11-22 17:36 Panax 阅读(6123) 评论(0) 推荐(1) 编辑
摘要: 右击打开控制台,找到音乐列表 ——》 点开详情 》 生成外部链接器 ,如: outchain/0/3073492173 ,这是每一个音乐的编号。 然后拼接上它的官网域名: https://music.163.com/#/outchain/0/3073492173 然后打开链接 : 下面代码就可以用了 阅读全文
posted @ 2019-11-22 15:30 Panax 阅读(655) 评论(0) 推荐(0) 编辑
摘要: JavaScript 各种遍历方式详解 在$.each中想要终止循环,但是它没有continue或者break这样的终止方式,所以尝试使用return来进行终止,但是发现并没有跳出循环。为了搞清楚js中关于各种遍历方式的不同,通过查询进行了一下总结: 为了方便例子讲解,现有数组和json对象如下: 阅读全文
posted @ 2019-11-22 11:22 Panax 阅读(303) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="serverList"> <ul class="scrollModeBox" :style="{'-webkit-overflow-scrolling': scrollMode,height: wrapperHeight + 'px'}"> <mt-lo 阅读全文
posted @ 2019-11-06 17:58 Panax 阅读(2089) 评论(0) 推荐(0) 编辑
摘要: 直接贴代码: <template> <div class="hello"> <p>签字:</p> <canvas id="canvas" width="300" height="400">Canvas画板</canvas> <button style="background: #fff;color: 阅读全文
posted @ 2019-11-06 17:53 Panax 阅读(1316) 评论(0) 推荐(0) 编辑
摘要: 安装: npm i vue-preview -S 2. main.js中 导入组件 //vue-preview 开始 import VuePreview from 'vue-preview'; // defalut install Vue.use(VuePreview) //vue-preview 阅读全文
posted @ 2019-11-06 17:00 Panax 阅读(2309) 评论(0) 推荐(0) 编辑
摘要: css : 阅读全文
posted @ 2019-11-04 18:06 Panax 阅读(1746) 评论(0) 推荐(0) 编辑
摘要: html, body, h1, h2, h3, h4, h5, h6, p, textarea, input, select, ul, ol, li, fieldset, figure { margin: 0; padding: 0; border: none; } html,body{ heigh 阅读全文
posted @ 2019-11-04 17:56 Panax 阅读(910) 评论(0) 推荐(0) 编辑
摘要: 在公共样式中加入 阅读全文
posted @ 2019-11-04 17:55 Panax 阅读(1895) 评论(0) 推荐(0) 编辑
摘要: .tab-pic-wrap .pic-wrap .list li a:hover img { transform: scale(1.03); } .tab-pic-wrap .pic-wrap .list li a img { width: 100%; transition: all 0.2s; } 阅读全文
posted @ 2019-11-04 17:48 Panax 阅读(579) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页