码迷,mamicode.com
首页 >  
搜索关键字:absolute    ( 3571个结果
vue中使用better-scroll滚动无效
安装 npm install better-scroll --save 调用: //重要是这两个标红的class类名 <div class="wrapper recommend" ref="wrapper"> <div class="content recommendHeight"> <h2 cla ...
分类:其他好文   时间:2020-06-26 20:15:37    阅读次数:64
CSS定位属性
定位 position 语法: position:static | relative | absolute | fixed | sticky 默认值:static 适用于:除display属性定义为table-column-group | table-column之外的所有元素 继承性:无 动画性: ...
分类:Web程序   时间:2020-06-25 17:13:49    阅读次数:483
关于一个简易的Html5音乐播放器的制作
效果: <!Doctype html> <html> <head> <meta charset="utf-8"> <title>MUSIC</title> <style type="text/css"> *{margin:0px;padding:0px;} #bg{position:absolute ...
分类:Web程序   时间:2020-06-25 16:07:21    阅读次数:100
220. Contains Duplicate III
Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between nums[i] and ...
分类:其他好文   时间:2020-06-25 12:23:09    阅读次数:74
git设置不用每次输入密码
这样在输入过一次密码之后,以后就不需要每次都输入密码了。touch ~/.git-credentials,git config --global credential.helper store ...
分类:其他好文   时间:2020-06-25 09:45:07    阅读次数:71
CSS3实现背景透明,文字不透明
最近遇到一个需求,要在图片上显示带有半透明背景的文字,效果如下图所示: 看到这个需求之后,第一反应是使用CSS3中的opacity设置元素的透明度。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name=" ...
分类:Web程序   时间:2020-06-24 00:10:29    阅读次数:97
HTML5如何垂直居中一个浮动元素
html如何垂直居中一个浮动元素//方法一:已知元素的高宽#div1{background-color:#6699FF;width:200px;height:200px;position:absolute;//父元素需要相对定位top:50%;left:50%;margin-top:-100px;/ ...
分类:Web程序   时间:2020-06-22 11:14:43    阅读次数:82
定位体系之浮动
子绝父相 position: relative;相对位置(常规流)移动后还是只占原来位置 绝对定位:position:absolute绝对位置 position:fixed固定位置 绝对定位的包含块:视口起点是浏览器左上角开始进行位置偏移 注:如果没有给定4个方向的值,元素是在原有位置 特点:会一直 ...
分类:其他好文   时间:2020-06-19 20:46:11    阅读次数:62
h5+ 分享到"QQ"失败: {"code":-100,"message":"[ShareQQ分享:-6]非法的图片地址!, http://ask.dcloud.net.cn/article/287"}
原因: QQ不支持网路图片地址,需要给api传本地图片地址,是file///:开头的路径,具体可以参考5+的地址转换方法requestFileSystem: 请求本地文件系统对象 resolveLocalFileSystemURL: 通过URL参数获取目录对象或文件对象 convertLocalFi ...
分类:Web程序   时间:2020-06-19 20:30:54    阅读次数:243
position
?# 从零开始的前端生活--position 包含块 定义:什么是包含块,就是元素用来计算和定位的一个框,可以说是参照物吧。比如width: 50%;他是参照哪个元素的50%,那个元素就是“包含块”。而绝对定位元素absolute的宽度是相对第一个position不为static的祖先元素计算的。计 ...
分类:其他好文   时间:2020-06-18 19:15:51    阅读次数:78
3571条   上一页 1 ... 9 10 11 12 13 ... 358 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!