码迷,mamicode.com
首页 >  
搜索关键字:transparent    ( 581个结果
CSS基本样式-背景属性
代码是敲出来的,建议一个一个过一遍 背景属性 1. 背景颜色 background color 背景颜色 默认值是transparent(透明的) 示例代码 背景图片 background image 背景图片 默认值是none(没有图片) 元素的背景占据了元素的全部尺寸,包括内边距和边框,但不包括 ...
分类:Web程序   时间:2019-12-22 00:22:25    阅读次数:105
css里的背景属性有哪些,如何去使用哪些属性
分类:纯色背景 背景图像 1、背景颜色 background-color : 任意合法的颜色 和 transparent 2、背景图像 background-image : url(想要加载的图片) 3、背景图片平铺 background-repeat : repeat:默认值水平垂直方向都平铺 r ...
分类:Web程序   时间:2019-12-11 23:32:03    阅读次数:198
CSS入门(盒子模型的三个构成部分)
一、边框属性 作用:给元素加上一个边框 第一种: border-top border-bottom border-left boder-right 三个属性值: 粗细 线型 颜色 第二种: border :粗细 线型 颜色 整个边框部分的调整。 透明色:transparent border-styl ...
分类:Web程序   时间:2019-12-11 09:47:54    阅读次数:1294
关闭centos大页及swappiness
首先检查THP的启用状态: [root@localhost ~]# cat /sys/kernel/mm/transparent_hugepage/defrag [always] madvise never [root@localhost ~]# cat /sys/kernel/mm/transpa ...
分类:移动开发   时间:2019-12-07 23:19:50    阅读次数:156
css实现斑马线效果
文本实现斑马线效果 <style> p { font-size: 17px; line-height: 25px; background-color: antiquewhite; background-image: linear-gradient(#99999 50%, transparent 0) ...
分类:Web程序   时间:2019-12-03 10:36:34    阅读次数:227
CSS利用border绘制图性
绘制梯形 width:10px; border-top:10px solid red; border-right:10px solid transparent; border-left:10px solid transparent; border-bottom:10px solid transpar ...
分类:Web程序   时间:2019-12-03 01:32:55    阅读次数:117
css实现三角形
box{ width: 0px; height: 0px; border: 100px solid; border top color: red; border right color: transparent; border bottom color: transparrent; border l ...
分类:Web程序   时间:2019-11-25 20:38:45    阅读次数:81
关于input的背景框透明,修改字符的时候背景透明css设置
1.背景透明 .detail input{ background-color:transparent; color: #00c7ff; border:1px solid #00c7ff; } 2.修改字符背景透明 .detail input:focus { background-color:tran ...
分类:Web程序   时间:2019-11-23 09:16:10    阅读次数:97
css三角形
1.网上比较通用的画利用正方形的border画三角形: .arrow{ width:0; height:0; border: 10px solid transparent; border-top-color: orange; position:absolute; content:''; } 在火狐浏 ...
分类:Web程序   时间:2019-11-21 17:00:06    阅读次数:117
pixijs shader贴图扫光效果
pixijs shader贴图扫光效果 直接贴代码 const app = new PIXI.Application({ transparent: true }); document.body.appendChild(app.view); // Create background image con ...
分类:Web程序   时间:2019-11-19 17:14:00    阅读次数:148
581条   上一页 1 ... 4 5 6 7 8 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!