摘要: vue实现跑马灯效果为阿中哥哥应援 1、效果图 2、实现代码 阅读全文
posted @ 2019-09-26 16:06 炸呼呼er 阅读(17211) 评论(0) 推荐(1) 编辑
摘要: Git--源代码管理工具 安装 https://git-scm.com/downloads 安装完成后,鼠标右键会出现如下图标,则表示安装成功 初始化git仓库 这个仓库会存放git对我们项目代码进行备份的文件 在项目目录右键打开 git bash here,输入命令 git init 此时,在该项 阅读全文
posted @ 2019-09-25 22:51 炸呼呼er 阅读(573) 评论(0) 推荐(0) 编辑
摘要: 在执行命令 git commit --all -m '说明' 时报错“The file will have its original line endings in your working directory” 通过查询后发现出现这个问题主要原因是: 我们从别人github地址上通过git clo 阅读全文
posted @ 2019-09-25 21:15 炸呼呼er 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: 打开Typora,选择文件--偏好设置,在通用设置下点击恢复未保存的草稿,就可以找到你所有未保存的文件。 阅读全文
posted @ 2019-09-05 12:29 炸呼呼er 阅读(3461) 评论(2) 推荐(6) 编辑
摘要: 30分钟彻底弄懂flex布局 阅读全文
posted @ 2019-08-09 12:11 炸呼呼er 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 在使用zepto时,我先引入zepto.min.js,然后引入fx.js,但是在使用animate函数时,控制台却报如下错误: Uncaught TypeError: this.bind is not a function 解决办法: 1、去github中打开src/fx.js,打开链接,把内容添加 阅读全文
posted @ 2019-08-05 10:43 炸呼呼er 阅读(1683) 评论(0) 推荐(0) 编辑
摘要: 一、安装 首先确保你的电脑上有node环境,然后使用cnpm或npm 安装 windows下 npm install weinre -g --registry=https://registry.npm.taobao.org mac下 sudo npm install weinre -g --regi 阅读全文
posted @ 2019-07-13 23:09 炸呼呼er 阅读(1329) 评论(0) 推荐(0) 编辑
摘要: 控制台报错:fullPage: Fullpage.js version 3 has changed its license to GPLv3 and it requires a `licenseKey` option. Read about it here: 解决办法: 在fullpage.js文件 阅读全文
posted @ 2019-06-04 14:03 炸呼呼er 阅读(5614) 评论(0) 推荐(1) 编辑
摘要: 1、先到官网上(https://github.com/alvarotrigo/fullPage.js)下载压缩包 2、引入文件 3、布局基本页面结构 4、实现全屏滚动(JS代码) <script> $(function(){ $('#fullpage').fullpage({ navigation: 阅读全文
posted @ 2019-06-04 13:18 炸呼呼er 阅读(320) 评论(0) 推荐(0) 编辑
摘要: art-template的官方文档(网址:https://aui.github.io/art-template/docs/)中对循环的介绍如下: 循环 标准语法 原始语法 但我在应用时,使用{{each target val key}}这样的代码会导致循环部分的html片段渲染不到页面中,也不会报错 阅读全文
posted @ 2019-06-03 19:02 炸呼呼er 阅读(913) 评论(0) 推荐(0) 编辑