摘要: 前言: canvas 元素用于在网页上绘制图形。 canvas 本身是一个标签,<canvas>标签定义图形,必须使用脚本来绘制图形,比如在画布上(Canvas)画一个红色矩形,渐变矩形,彩色矩形,和一些彩色文字。 什么是Canvas? HTML5 的canvas元素使用javascript在网页上 阅读全文
posted @ 2020-06-15 11:49 以深 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 兼容性写法: @font-face { font-family: '字体名'; src: url('字体名.eot'); /* IE9 兼容模式 */ src: url('字体名.eot?#iefix') format('embedded-opentype'),/* IE6-IE8 */ url(' 阅读全文
posted @ 2020-06-09 09:55 以深 阅读(525) 评论(0) 推荐(0) 编辑
摘要: <div id="content"> <h3><a class="a1" href="#">a标签伪类link,hover,active,visited,focus区别</a></h3> </div> a.a1:link{ /*链接未被访问时的状态*/ color: blue; } a.a1:vis 阅读全文
posted @ 2020-06-04 17:39 以深 阅读(2164) 评论(0) 推荐(0) 编辑
摘要: 一。隐藏加省略 单行文本: overflow: hidden; white-space: nowrap; text-overflow: ellipsis; 多行文本: overflow: hidden; text-overflow: ellipsis; display: -webkit-box; - 阅读全文
posted @ 2020-05-26 15:18 以深 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 前言: grid网格布局,就是将网页划分成一个个网格,可以任意组合不同的网格,做出各种各样的布局 html <div class="content"> <div class="grid">1</div> <div class="grid">2</div> <div class="grid">3</d 阅读全文
posted @ 2020-05-22 15:53 以深 阅读(4358) 评论(0) 推荐(1) 编辑
摘要: 1.字体背景全部透明 原始: h2 { color: rgb(0, 0, 0); background-color: rgb(244,67,54); opacity: 0.5; }如图: 2.背景透明文字不透明 h2 { color: rgb(0, 0, 0); background-color: 阅读全文
posted @ 2020-05-19 15:26 以深 阅读(748) 评论(0) 推荐(0) 编辑
摘要: 前言: 用户看到的仅是浏览器本身,却很少能看到浏览器最核心的部分——浏览器内核。 现在国内常见的浏览器有:IE、Firefox、QQ浏览器、Safari、Opera、Google Chrome、百度浏览器、搜狗浏览器、猎豹浏览器、360浏览器、UC浏览器、遨游浏览器等。 但目前最为主流浏览器有五大款 阅读全文
posted @ 2020-05-19 09:41 以深 阅读(1139) 评论(0) 推荐(1) 编辑
摘要: 一、渐变效果 -> 线性渐变 方法: background-image: linear-gradient(direction, color-stop1, color-stop2, ...); 默认的是从上到下的线性渐变 #grad { height: 200px; background-image: 阅读全文
posted @ 2020-05-11 15:59 以深 阅读(483) 评论(0) 推荐(0) 编辑
摘要: WPS OFFICE 2016 安装 链接: https://pan.baidu.com/s/1dfjNFDxcl1n2fvYTt9c86A 提取码: ij8e 下载解压:.txt是序列号,.exe是安装程序。 阅读全文
posted @ 2020-05-09 17:50 以深 阅读(1931) 评论(0) 推荐(0) 编辑
摘要: animation: name duration timing-function delay iteration-count direction; 值描述 animation-name 规定需要绑定到选择器的 keyframe 名称。。 animation-duration 规定完成动画所花费的时间 阅读全文
posted @ 2020-04-09 16:24 以深 阅读(700) 评论(0) 推荐(0) 编辑
TOP