marquee的基本语法:<marquee> ... </marquee> 参数:1、滚动方向 (direction):left(左)、right(右)、up(上)、down(下)。 例:<marquee direction="up">向上移动</marquee> 2、移动方式 ( behavior ...
分类:
其他好文 时间:
2020-12-30 11:18:09
阅读次数:
0
vue-cli这个构建工具大大降低了webpack的使用难度,支持热更新,有webpack-dev-server的支持,相当于启动了一个请求服务器,给你搭建了一个测试环境,只关注开发就OK。 1.安装vue-cli ① 使用npm(需要安装node环境)全局安装webpack,打开命令行工具输入: ...
分类:
其他好文 时间:
2020-12-30 11:04:10
阅读次数:
0
最近uniapp嵌入了一个h5页面,需要通过页面上的按钮返回。uni官方文档上这样描述,<web-view>加载的h5网页中,是支持调用以下api的: 但是在实际h5页面中,直接调用这些方法并不起作用。 百度了一圈,原来,h5页面中需要引入以下两个sdk。分为以下步骤: 1,在h5页面引入SDK。注 ...
分类:
微信 时间:
2020-12-30 10:42:39
阅读次数:
0
ESP8266WiFiSTA库:http://www.taichi-maker.com/homepage/iot-development/iot-dev-reference/esp8266-c-plus-plus-reference/esp8266wifista/ ESP8266WiFiAP库:ht ...
分类:
其他好文 时间:
2020-12-29 12:04:27
阅读次数:
0
递归实现 template<typename T> int binary_search(T arr[], int len, int left, int right, int find) { // 必要参数检查 if (NULL == arr || nullptr == arr || 0 > left ...
分类:
编程语言 时间:
2020-12-29 11:31:49
阅读次数:
0
jQuery封装 css .myToast,.myToast{ position: fixed; top:50%; left:50%; z-index: 1000; color:#fff; text-align: center; border-radius: 0.2rem;; transform:t ...
分类:
其他好文 时间:
2020-12-29 11:23:54
阅读次数:
0
select a.Name as Employee from employee a left join employee b on b.id = a.managerID where a.Salary > b.Salary ...
分类:
其他好文 时间:
2020-12-29 11:14:10
阅读次数:
0
1.脚手架安装项目 npm install -g @vue/cli vue create -p dcloudio/uni-preset-vue my-app cd my-app npm run dev:mp-weixin 小程序工具导入项目,注意:是mp-weixin的文件夹 2.样式与sass w ...
分类:
移动开发 时间:
2020-12-29 10:57:21
阅读次数:
0
centos7 在安装后,通常我们通过df -h 来查看磁盘空间的时候率。如下: [root@oracle01 ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/centos-root 46G 32G 14G 71% / ...
分类:
其他好文 时间:
2020-12-28 11:47:08
阅读次数:
0
linux虚拟环境的管理-python版本 用python开发项目,受版本限制,需要变更不同版本的python,以前都是直接安装python,如在ubuntu环境下 sudo apt-get install python-dev ubuntu不同版本默认安装的python3版本16.04-pytho ...
分类:
系统相关 时间:
2020-12-28 11:44:20
阅读次数:
0