2021-03-13 22:42:16 星期六 1. 移动端常见特效 click移动端300s延时解决方案 原因:移动端双击屏幕会缩放 禁用缩放 <meta name="viewport" content="user-scalable=no" /> 利用touch事件自己封装这个事件 解决300ms ...
分类:
移动开发 时间:
2021-03-17 14:20:59
阅读次数:
0
基本开发环境: ·Python3.6 ·Pycharm 相关模块使用: import requests import time 目标网页分析: 选择一个影视栏目,F12或者鼠标右键检查,打开开发者工具,选择network,下滑网页 https://haokan.baidu.com/videoui/a ...
分类:
编程语言 时间:
2021-03-17 14:20:20
阅读次数:
0
树形数据 let list = [ { id: 1, pid: 0, path: '/home', title: '首页', name: 'Home' }, { id: 2, pid: 0, path: '/student', name: 'Student', title: '招生管理' }, { ...
分类:
其他好文 时间:
2021-03-15 10:59:22
阅读次数:
0
5 浮动 标准文档流 块级元素:独占一行 h1~h6 p div 列表。。。 行内元素:不独占一行 span a img strong 行内元素可以被包含在块级元素中,反之,则不可以~ 5.2 display 却可以这样做 <!DOCTYPE html> <html lang="en"> <head ...
分类:
Web程序 时间:
2021-03-15 10:58:26
阅读次数:
0
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:
Web程序 时间:
2021-03-12 13:45:30
阅读次数:
0
1.执行请求 content-type 2.设置环境变量 set an environment variable 3.接口循环 collection runner 4.断言 reponse body Contains string //获取响应数据json对象 //把postman的json返回结果 ...
分类:
其他好文 时间:
2021-03-11 20:33:20
阅读次数:
0
1、我在negut管理包中安装了相关包,但是一直不能显示中文 其他文章都说的是fileinput_locale_zh.js文件是中文包,但是我找遍所有文件都没有找到。 实际上安装完成后的语言包在~/Scripts/locales下 <link href="~/Content/bootstrap.mi ...
分类:
其他好文 时间:
2021-03-11 11:44:40
阅读次数:
0
题目链接:https://www.acwing.com/problem/content/4/ 题目描述: 解题思路:与前两个背包问题类似(题目链接:https://www.cnblogs.com/ygsr/p/14502222.html) 与前两个题比,这个题多添加一个for循环用来读取物品个数。 ...
1. Grid: by default showing content in Y axis (column), Flex: by default showing content in X axis. Exp: If you want to style a header.. you can use f ...
分类:
Web程序 时间:
2021-03-09 13:32:34
阅读次数:
0
基本体现在代码中的meta标签之中 关键字 <meta name="keywords" content="关键字1, 关键字2, 关键字3" /> 描述 <meta name="description" content="这里写对这个网页的描述"> 重定向 <meta http-equiv="ref ...
分类:
其他好文 时间:
2021-03-09 13:12:19
阅读次数:
0