摘要: 解决方式:注释标签 CPS设置upgrade insecure requests 作用是让浏览器自动升级请求。 在服务器的响应头中加入: 我们的页面是https的,但是在这个页面包含了大量的http资源(图片、iframe等),页面一旦发现存在上述响应头,会在加载http资源是自动替换成https请 阅读全文
posted @ 2020-01-10 22:33 zhongfang99 阅读(1805) 评论(0) 推荐(0) 编辑
摘要: 官网 https://daneden.github.io/animate.css/ 使用 class类中 必须加 阅读全文
posted @ 2020-01-10 16:46 zhongfang99 阅读(242) 评论(0) 推荐(0) 编辑
摘要: ```js methods:{ timeToRefresh(){ this.timer = setInterval(()=>{ // 调用的方法 },1000) } }, // 清除定时器 beforeDestroy(){ clearInterval(this.timer) this.timer = null } ``` 阅读全文
posted @ 2020-01-10 16:23 zhongfang99 阅读(786) 评论(0) 推荐(0) 编辑
摘要: ```html``` 阅读全文
posted @ 2020-01-10 16:20 zhongfang99 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 将下载下来的文件夹iconfont.css复制到项目目录common中, 在iconfont.css中将引入其他文件的代码删除 注意,在 后是个分号 使用: 在app.vue的style标签中引入@import './common/iconfont.css'; 阅读全文
posted @ 2020-01-10 16:06 zhongfang99 阅读(597) 评论(0) 推荐(0) 编辑