以下是针对移动端所设计的样式,如需pc端的请自行更改 window.onload = function(){ window.alert = function(msg, callback) { var div = document.createElement("div"); div.innerHTML ...
分类:
其他好文 时间:
2021-04-09 13:35:30
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>12生肖相册</title> <style> html{ background: #000; height: 100%; } /*最外层容器样式*/ .wrap{ position ...
分类:
其他好文 时间:
2021-04-07 10:49:56
阅读次数:
0
1. 基本的经典查询 #基本的查询语句 SELECT * FROM data.`dataanalyst` WHERE city ='上海' AND (education = '本科' OR workYear = '1-3年' ) AND secondType LIKE '%开发%' #字段包含开发 ...
分类:
数据库 时间:
2021-03-10 13:35:36
阅读次数:
0
检查元素定位到购物车,将display属性改为none, 并将下列代码粘贴到 Additional CSS中。 .site-header-cart .cart-contents { padding: 1.618em 0; display: none; position: relative; back ...
分类:
其他好文 时间:
2021-03-09 13:40:12
阅读次数:
0
类名语义化,尽量精短、明确,必须以字母开头命名,且全部字母为小写,单词之间统一使用下划线“_” 连接 类名嵌套层次尽量不超过三层 尽量避免直接使用元素选择器 属性书写顺序 布局定位属性:display / position / float / clear / visibility / overflo ...
分类:
Web程序 时间:
2021-03-08 13:22:51
阅读次数:
0
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-- ...
分类:
其他好文 时间:
2021-03-05 13:22:06
阅读次数:
0
.nav{ float: left; } .nav ul li { float: left; position: relative; } .nav ul li a{ color: #FFF; font-size: 16px; line-height: 80px; margin: 0 25px; } ...
分类:
其他好文 时间:
2021-03-03 12:36:32
阅读次数:
0
学习视频:https://www.bilibili.com/video/BV1bJ411C7xv?from=search&seid=10080987211475773831 先明白什么是序列化? 为了方便存储对象,就把对象转化为字符串,这种过程就叫序列化过程。 那反序列化自然就是 字符串转换 为对象 ...
分类:
其他好文 时间:
2021-03-02 12:14:15
阅读次数:
0
sticky 定位 sticky 英文字面意思是粘,粘贴,所以可以把它称之为粘性定位。 position: sticky; 基于用户的滚动位置来定位。 粘性定位的元素是依赖于用户的滚动,在 position:relative 与 position:fixed 定位之间切换。 它的行为就像 posit ...
分类:
其他好文 时间:
2021-03-02 11:46:12
阅读次数:
0
1.change master to 时,ip port user password binlog position写入到master.info进行记录 2. start slave 时,从库会启动IO线程和SQL线程 3.IO_T,读取master.info信息,获取主库信息连接主库 4. 主库会 ...
分类:
数据库 时间:
2021-03-01 13:26:00
阅读次数:
0