离线, 截获请求 /serviceworker -/index.html -/index.js -/sw.js index.html == <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewp ...
分类:
其他好文 时间:
2020-10-26 11:17:19
阅读次数:
19
效果图 源代码 <!doctype html> <html> <head> <meta charset="utf-8"> <title>黄菊华:H5+CSS3商城界面实战</title> <meta name="viewport" content="width=device-width, initi ...
分类:
数据库 时间:
2020-10-24 11:47:14
阅读次数:
42
效果图 源代码 <!doctype html> <html> <head> <meta charset="utf-8"> <title>黄菊华:H5+CSS3商城界面实战-购物车</title> <meta name="viewport" content="width=device-width, i ...
分类:
数据库 时间:
2020-10-24 11:46:30
阅读次数:
45
HTML的基本格式 <!DOCTYPE html> <! 命名文档类型HTML5 > <html lang="en"> <! 说明我们写的是标记语言HTML文档 > <head> <! 头部文件(描述区) > <meta charset="UTF-8"> <! 编码格式utf-8、gb2312、gb ...
分类:
Web程序 时间:
2020-10-24 09:50:57
阅读次数:
32
BOM 页面的事件 window.onload 页面加载完毕后触发 window.onunload 页面关闭后触发 window.onbeforeunload 页面关闭之前触发 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" ...
分类:
其他好文 时间:
2020-10-22 22:14:14
阅读次数:
29
定时器 BOM中的定时器 setInterval() 页面加载完毕后过了指定的之间后执行 该定时器循环执行 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>title</title> <script> //B ...
分类:
其他好文 时间:
2020-10-22 22:12:24
阅读次数:
17
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>CSS</title> <style> p{ color: red; font-size: 30px; line-height: 200px; text-align ...
分类:
Web程序 时间:
2020-10-21 20:40:08
阅读次数:
31
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <tit ...
分类:
其他好文 时间:
2020-10-18 17:12:26
阅读次数:
38
导航页预览图: 导航页源码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <l ...
分类:
其他好文 时间:
2020-10-18 10:02:46
阅读次数:
17
1.背景 在实际开发中,有的属性很复杂,需要计算得到..... 2.简单使用 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>计算属性</title> <!-- 开发环境版本,包含了有帮助的命令行警告 --> ...
分类:
其他好文 时间:
2020-10-16 10:58:39
阅读次数:
19