上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 29 下一页
摘要: ``` """ this is a module,多行注释 """ import re from urllib import request # BeautifulSoup:解析数据结构 推荐库 Scrapy:爬虫框架 #爬虫,反爬虫,反反爬虫 #ip 封 #代理ip库 class Spider(): url='https://www.panda.tv/cate/lol' r... 阅读全文
posted @ 2018-08-08 22:42 raindi 阅读(668) 评论(0) 推荐(0)
摘要: <head>里面加上: 需要拨打电话的地方: 发短信: 点击 页面上的电话号码 ,页面会调用手机的电话接口。 阅读全文
posted @ 2018-08-06 13:48 raindi 阅读(4161) 评论(0) 推荐(0)
摘要: Active的一段话 active的英文解释为“积极的”,表现在鼠标上就是点击的意思。关于active选择器最多的示例恐怕就是应用在链接上面的,然而打开链接是一个一瞬间的动作,这不能很好的体现active选择器的特点。 Active的特点 其实我们打开一个带有active链接,激活acive是有一个 阅读全文
posted @ 2018-08-02 18:27 raindi 阅读(2542) 评论(0) 推荐(0)
摘要: https://www.imooc.com/article/19691 阅读全文
posted @ 2018-08-02 15:21 raindi 阅读(147) 评论(0) 推荐(0)
摘要: 直接开始正题,git 提交的步骤: 1. git init //初始化仓库 2. git add .(文件name) //添加文件到本地仓库 3. git commit -m "first commit" //添加文件描述信息 4. git remote add origin + 远程仓库地址 // 阅读全文
posted @ 2018-08-02 14:31 raindi 阅读(838) 评论(0) 推荐(0)
摘要: Unable to preventDefault inside passive event listener due to target being treated as passive? 使用滚动时候,新版google浏览器,会弹出如下的警告。 解决方法,可以加上* { touch-action: 阅读全文
posted @ 2018-07-31 15:51 raindi 阅读(216) 评论(0) 推荐(0)
摘要: passive 的事件监听器 很久以前,addEventListener() 的参数约定是这样的: addEventListener(type, listener, useCapture) 后来,最后一个参数,也就是控制监听器是在捕获阶段执行还是在冒泡阶段执行的 useCapture 参数,变成了可 阅读全文
posted @ 2018-07-31 15:45 raindi 阅读(337) 评论(0) 推荐(0)
摘要: 模式 vue-router中的模式选项主要在router实例化的时候进行定义的,如下 const router = new VueRouter({ mode: 'history', // 两种类型history 还有 hash routes: routes // 可以缩写成routes }) 有两种 阅读全文
posted @ 2018-07-27 17:12 raindi 阅读(3644) 评论(0) 推荐(0)
摘要: 报以下错误: 原因: axios实例没有all这个方法,all是axios的静态方法 解决方法: 以下方法不是最好的,还没找到更好的解决办法,目前先这样解决。 阅读全文
posted @ 2018-07-25 18:22 raindi 阅读(2336) 评论(0) 推荐(0)
摘要: 一、应用 效果: 美国进口Culturelle康萃乐 益生菌30片儿童水果味LGG... 二、理解 注意:-webkit-line-clamp是webkit的私有属性,是一个 不规范的属性(unsupported WebKit property),它没有出现在 CSS 规范草案中。 -webkit- 阅读全文
posted @ 2018-07-25 16:59 raindi 阅读(3711) 评论(0) 推荐(0)
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 29 下一页