background-size中,100%和cover都是用于将图片扩大或者缩放来适应整个容器 background-size:100% 100%; 按容器比例撑满,图片变形; background-size:cover; 把背景图片放大到适合元素容器的尺寸,图片比例不变,但是要注意,超出容器的部分 ...
分类:
其他好文 时间:
2019-02-22 10:39:01
阅读次数:
788
首先介绍下自己,我是从后端转前端,对于前端的见识还不深望各位全当一个新手自述....... 随着移动设配的更新换代,市场上涌现了大量的非主流设备分辨率,比如华为手机...... 更新换代快的大前提下自然又涌现出了适配问题,主流解决方案有很多,如响应式布局、cover布局、container布局 这几 ...
分类:
Web程序 时间:
2019-02-20 15:57:41
阅读次数:
729
1:解决disableScroll无法禁止小程序下拉的问题 disableScroll的优先级小于enablePullDownRefresh,因此如果app.json里是enablePullDownRefresh:true,那如果只是在page.json中加上disableScroll:true是无 ...
分类:
微信 时间:
2019-02-17 20:38:30
阅读次数:
338
html,body{ height:100%; //关键} /*包裹其他所有div的div*/ #cover { width:100%; //关键 height:auto; //关键 border-radius: 10px; background-size:100% auto; background ...
分类:
Web程序 时间:
2019-02-17 15:28:58
阅读次数:
241
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the others are n ...
分类:
其他好文 时间:
2019-02-14 15:05:23
阅读次数:
168
算法描述: Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*'. The matching should cover the ent ...
分类:
其他好文 时间:
2019-02-13 10:58:59
阅读次数:
145
Given an input string (s) and a pattern (p), implement regular expression matching with support for '.' and '*'. The matching should cover the entire ...
分类:
其他好文 时间:
2019-02-11 01:00:12
阅读次数:
199
这道题最开始我以为和HDU - 1542?那道题一样,只需要把cover次数改成2次即可,但是后面仔细一想,我们需要求的是覆盖次数大于等于2次的,这样的话,我们需要维护两个长度,HDU-1542 由于求的是覆盖次数大于等于一次的,我们只需要维护一个覆盖次数大于等于1的长度的len1就行,但是这道题我 ...
分类:
其他好文 时间:
2019-02-10 13:48:12
阅读次数:
192
Given an input string (s) and a pattern (p), implement regular expression matching with support for '.' and '*'. The matching should cover the entire ...
分类:
其他好文 时间:
2019-02-06 14:41:09
阅读次数:
209
Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*'. The matching should cover the entire in ...
分类:
其他好文 时间:
2019-02-04 15:27:30
阅读次数:
164