from __future__ import absolute_import from __future__ import division from __future__ import print_function 一个file 中出现了这些语句,但是这些语句前面有注释(关于这个文件的说明)。 然 ...
分类:
其他好文 时间:
2020-07-06 20:01:03
阅读次数:
49
wxml: <scroll-view class="warp_" scroll-y="true"> <view style='' style='position: absolute;z-index: 2;top:0;left:0;right:0;'> <canvas canvas-id="myCan ...
分类:
微信 时间:
2020-07-06 19:43:18
阅读次数:
83
问题: 平常我们大多数做移动端开发,会有只占一屏且不滚动的页面,css属性设置 width:100%,height:100%,或者(width:100vw; height:100vh), 经常头部 +内容 +底部,这样三栏的经典布局,然后内容超过一定高度之后,设置overflow:auto,内容自适 ...
分类:
其他好文 时间:
2020-07-04 20:36:13
阅读次数:
140
效果图如下: 友情提示:本篇文章只是用来熟练掌握css样式和布局能力,空闲时间不妨敲一遍,增加一些体验,我也不算白敲一遍。。 是不是有点心动呢?接下来请看具体步骤: 首先先把HTML部分先写完,做出整体的结构: <div class="baymax"> <!-- 定义头部 眼睛、嘴巴 --> <di ...
分类:
其他好文 时间:
2020-07-03 21:28:50
阅读次数:
97
懒人方案 网盘: 链接:https://pan.baidu.com/s/1x4OB1IF2HZGgtLhd1Kr_AQ 提取码:glx7 网盘内是已生成可用工具,下载可以直接使用,使用前看一下READ.txt文件。 Maven依赖 <?xml version="1.0" encoding="UTF- ...
分类:
编程语言 时间:
2020-07-03 15:34:39
阅读次数:
222
底部1px虚线边框: .line { width: 100%; height: 100px; position:relative; border-left:1px dashed red; border-right:1px dashed red; } .line:after { content:''; ...
分类:
移动开发 时间:
2020-07-02 16:03:01
阅读次数:
55
CSS 中文开发手册 滚动界限终点 | scroll-snap-destination (Scroll Snap) - CSS 中文开发手册 scroll-snap-destination 弃用 该功能已从Web标准中删除。尽管一些浏览器可能仍然支持,但它正在被丢弃。避免使用它并尽可能更新现有的代码... ...
分类:
Web程序 时间:
2020-07-01 23:39:46
阅读次数:
74
首先看看需求,tab栏上的一个active样式 //找到active时的选择器 .active::before { content: ''; width: 100%; height: 6px; background-color: green; display: inline-block; posit ...
分类:
Web程序 时间:
2020-07-01 17:28:24
阅读次数:
146
定位布局(Position)指元素可以脱离原来的位置,定位到页面中的任意位置。 定位布局以内边距(padding)区域的左上角为定位原点,分为相对定位(包括static及relative)和绝对定位(包括absolute及fixed)。 1. 静态定位(static) 静态定位是默认的文档布局方式, ...
分类:
Web程序 时间:
2020-06-29 21:26:45
阅读次数:
78
一、jQuery 设置宽度和高度 高度操作: ```javascript $(selector).height(); //不带参数表示获取高度 $(selector).height(200); //带参数表示设置高度``` 宽度操作: ```javascript $(selector).width( ...
分类:
Web程序 时间:
2020-06-28 13:03:05
阅读次数:
79