关于列表属性的介绍 list-style:列表的图片语法: list-style:list-style-image || list-style-position || list-style-type 列表的样式:列表的图片 列表的符号位置 列表的样式 list-style:none; 不要列表的符号 ...
分类:
Web程序 时间:
2020-03-22 13:48:22
阅读次数:
87
上面橙色的就是提示框,position是fixed的,在这个编写过程中确实遇到了难点,那就是“我的频道”是iframe,而我们如果在iframe中直接加入这个js, 那么它的fixed只是相对于iframe的,而不是当前的窗口,所以,我们要在iframe内部回应,并且在顶层响应,这里上浏览器找了好久 ...
分类:
其他好文 时间:
2020-03-20 23:46:43
阅读次数:
57
# dpkg -S /usr/lib/mate-notification-daemon/mate-notification-daemonmate-notification-daemon: /usr/lib/mate-notification-daemon/mate-notification-daem ...
分类:
其他好文 时间:
2020-03-20 20:30:51
阅读次数:
66
Given a knight in a chessboard (a binary matrix with 0 as empty and 1 as barrier) with a source position, find the shortest path to a destination posi ...
分类:
其他好文 时间:
2020-03-20 13:06:50
阅读次数:
61
"https://leetcode.com/problems/find first and last position of element in sorted array/" 给定一个有序数组,可能包含有重复元素,问target在数组中的起始位置和结束位置,要求复杂度 $O(logN)$ \ Ex ...
分类:
其他好文 时间:
2020-03-20 12:56:04
阅读次数:
49
微信小程序button组件样式 韦弦Zhy关注 22018.07.03 19:21:14字数 438阅读 108,988 button.png 上图下字.png 需要使用微信小程序button组件的open-type来实现授权之类的操作时,发现样式并不是自己想要的,然后改起来也并不是很方便,下面让我 ...
分类:
微信 时间:
2020-03-20 12:50:36
阅读次数:
71
1. 纯python In [247]: import random .....: position = 0 .....: walk = [position] .....: steps = 1000 .....: for i in range(steps): .....: step = 1 if r ...
分类:
编程语言 时间:
2020-03-20 10:48:54
阅读次数:
73
``` html ``` ``` css .close { position: relative; width: 40px; height: 40px; } .close::before, .close::after { position: absolute; content: ' '; backg... ...
分类:
Web程序 时间:
2020-03-19 21:38:35
阅读次数:
1433
页面中经常会遇到弹出层的部件,当弹出层激活时覆盖整个页面,且背景部分不能滚动。实现起来有以下要点: 弹出层position设置为fixed,四个定位锚点均设为0; 激活弹出层时给html和body设置overflow: hidden;; 以下是实践: codepen 为了让彻底禁止滚动,还可以在mo ...
分类:
其他好文 时间:
2020-03-19 17:49:05
阅读次数:
68
相对定位 如果想为元素设置层模型中的相对定位,需要设置position:relative;,它还是会占用该元素在文档中初始的页面空间,通过left、right、top、bottom属性确定元素在正常文档流中的偏移位置,然后相对于以前的位置移动,移动的方向和幅度由left、right、top、bott ...
分类:
Web程序 时间:
2020-03-19 13:22:48
阅读次数:
71