.vogueHover { width: 100%;height: 100%; position: absolute; left: 0; top: 0; background: #001e50; z-index: 9999; opacity:0 } .vogueHover:hover { trans ...
分类:
Web程序 时间:
2020-05-15 15:39:21
阅读次数:
58
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>彩虹小马驹</title> <style> body{ margin: 0; background-color: #eeeeee; } #auth{ height: ...
分类:
其他好文 时间:
2020-05-14 22:17:01
阅读次数:
69
The abstract provides a summary of the thesis and often contains the following moves in this order: 1. background to the thesis 2. purpose of the thes ...
分类:
其他好文 时间:
2020-05-14 12:46:10
阅读次数:
74
在CSS中,可以使用background(背景)属性来添加图片,默认图片是向x轴和y轴重复。那么css如何将图片横向平铺?下面本篇文章就来给大家介绍一下使用CSS将图片横向平铺的方法,希望对大家有所帮助。 在CSS中,可以使用background-repeat属性来将图片横向平铺。backgroun ...
分类:
Web程序 时间:
2020-05-13 16:41:17
阅读次数:
178
背景属性用与定义HTML元素的背景样式 效果有: background-color background-image background-repeat background-attachment background-position 背景颜色: 颜色使用再body的选择器当中 例: body { ...
分类:
Web程序 时间:
2020-05-11 17:08:29
阅读次数:
109
<body> <div id="myImg" style="position: absolute; width: 100px;height: 100px;background-color: pink;border: red solid 2px; border-radius: 20px;"> <!-- ...
分类:
移动开发 时间:
2020-05-11 13:27:39
阅读次数:
71
之前说的条纹全部都是有规律的条纹,如果实现随机宽度的垂直条纹呢其实原理a)宽度尽量选择质数,因为质数跟任何其它数字都是相对质数b)因为最顶层贴片的重复规律最容易被察觉(它没有被任何东西遮挡),我们应该把平铺间距最大的贴片安排在最顶层 background: hsl(20, 40%, 90%); ba ...
分类:
Web程序 时间:
2020-05-10 19:38:23
阅读次数:
72
先来说说渐变吧 background: linear-gradient(#fb3 20%, #58a 80%); 效果图如下所示:也就是说真正的渐变只出现在容器 60%(从20%到80%) 的高度区域 如果把两个色标合在一起,会怎样呢w3c是这样规定的“如果多个色标具有相同的位置, 它们会产生一个无 ...
分类:
Web程序 时间:
2020-05-10 19:27:00
阅读次数:
84
```CSS #toggler{ /*1*/ display:none; } .hamburger-container{ /*2*/ width:20px; height:20px; background-color:#000; /*2*/ position:relative;/*9这样就可以设定t... ...
分类:
移动开发 时间:
2020-05-10 19:11:19
阅读次数:
111
网格 html { background: #58a; background-image: linear-gradient(white 2px, transparent 0), linear-gradient(90deg, white 2px, transparent 0), linear-grad ...
分类:
Web程序 时间:
2020-05-10 19:10:43
阅读次数:
84