摘要: html代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobil 阅读全文
posted @ 2021-12-28 10:22 待炒的鱼 阅读(1952) 评论(2) 推荐(1) 编辑
摘要: <head> <title></title> <meta name="keywords" content=""> <meta name="description" content=""> </head> let head = document.getElementsByTagName('head') 阅读全文
posted @ 2021-12-23 17:26 待炒的鱼 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 1.要实现浏览器录音功能,用的最广泛的插件是 js-audio-recorder 先附上插件文档: (1)http://recorder.api.zhuyuntao.cn/Recorder/start.html (2)https://www.e-learn.cn/topic/3748900 先排两个 阅读全文
posted @ 2021-12-17 14:01 待炒的鱼 阅读(895) 评论(0) 推荐(0) 编辑
摘要: 1.复制需要烧录的代码路径 2.在eclipse中右边空白处点击右键选择import 3.打开c/c++文件选择带有 Makefile 的文件,点击Next 4.取消c++勾选 选择 Cygwin GCC ,把复制的代码路径粘贴到第二行空白栏,点击Finish 5.导入成功 6.打开esp8266- 阅读全文
posted @ 2021-12-17 14:00 待炒的鱼 阅读(855) 评论(0) 推荐(0) 编辑
摘要: 安装uWSGI pip install uwsgi 在项目的目录创建一个uwsgi.ini的配置文件(manage.py) [uwsgi] # uwsgi 启动时所使用的地址与端口(可以与项目端口不一致) socket = 127.0.0.1:8088 # python 启动程序文件 wsgi-fi 阅读全文
posted @ 2021-12-17 13:56 待炒的鱼 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 1.安装swiper(默认安装最新版本) npm i swiper 2.安装vue-awesome-swiper(这里需要指定版本 有坑) npm install swiper vue-awesome-swiper@3.1.3 --save 3.页面使用 <template> <div class= 阅读全文
posted @ 2021-12-11 11:29 待炒的鱼 阅读(1429) 评论(0) 推荐(0) 编辑
摘要: 1.先附上有道产品文档地址 https://ai.youdao.com/DOCSIRMA/html/%E8%87%AA%E7%84%B6%E8%AF%AD%E8%A8%80%E7%BF%BB%E8%AF%91/API%E6%96%87%E6%A1%A3/%E6%96%87%E6%9C%AC%E7%B 阅读全文
posted @ 2021-07-31 10:04 待炒的鱼 阅读(1147) 评论(1) 推荐(0) 编辑
摘要: <template> <view class="content"> <view class="title-bar"> <view :class="selIndex==n?'selIndex':''" v-for="(i,n) in titleList" @click="selIndexs(n)" : 阅读全文
posted @ 2021-06-12 17:52 待炒的鱼 阅读(853) 评论(1) 推荐(1) 编辑
摘要: 1、安装引入Animate.css npm install animate.css --save 2、在main.js中导入并全局使用Animate.css: import animated from 'animate.css' Vue.use(animated) <template> <div c 阅读全文
posted @ 2021-06-09 16:12 待炒的鱼 阅读(507) 评论(0) 推荐(0) 编辑
摘要: //npm安装scrollReveal npm install scrollreveal //引入到组件中 import scrollReveal from ‘scrollreveal’; //在data中注册 data () { return { scrollReveal: scrollRevea 阅读全文
posted @ 2021-06-09 15:43 待炒的鱼 阅读(1147) 评论(0) 推荐(0) 编辑