HTML_04_Table
摘要:Table 1. Basic table structure <table> </table> create a table <tr> </tr> indicate the start of each row <td> </td> each cell in a roll <table>
阅读全文
posted @
2023-02-13 21:39
摸鱼time
阅读(34)
推荐(0)
HTML_03_Images
摘要:Images 1. Storing images on the site create a folder to store On a big site, subfolders such as "interface", "products", "news" are necessary 2. addin
阅读全文
posted @
2023-02-13 15:12
摸鱼time
阅读(43)
推荐(0)
HTML_02_Links
摘要:Links grammar <a href="https:www.imdb.com">IMDB</a> IMDB 1. Directory Structure Relative URLs <a href="www.examplearts.com/index.html">home page</a> <
阅读全文
posted @
2023-02-13 15:06
摸鱼time
阅读(24)
推荐(0)
HTML_01_TEXT
摘要:1. TEXT <strong>bold</strong> <!-- by defauly, the content showed in bold --> <b>bold</b> <i>italics</i> <em>italics</em> <del>del</del> <s>del</s> <i
阅读全文
posted @
2023-02-13 14:47
摸鱼time
阅读(30)
推荐(0)
Javascript_Truthy(真值)
摘要:Javascript_Truthy(真值) 在 JavaScript 中,truthy(真值)指的是在布尔值上下文中,转换后的值为真的值。所有值都是真值,除非它们被定义为 假值(即除 false、0、""、null、undefined 和 NaN 以外皆为真值)。
阅读全文
posted @
2021-07-13 14:04
摸鱼time
阅读(68)
推荐(0)
JS初识闭包
摘要:JS初识闭包 以如下代码为例 function f1(){ var n=999; nAdd=function(){n+=1} function f2(){ // 函数f2根据js作用域链拥有对其父函数f1的变量与内部函数的访问圈钱 <1式> alert(n); } return f2; // 返回对
阅读全文
posted @
2021-07-03 11:54
摸鱼time
阅读(60)
推荐(0)
JavaScript_自动轮播图
摘要:JavaScript_自动轮播图 源码下载链接 效果如下,动态效果请自行运行 代码如下 <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content
阅读全文
posted @
2021-06-03 11:44
摸鱼time
阅读(196)
推荐(0)
CSS_FlEX的简单例子1
摘要:CSS_FlEX的简单例子1 页面效果 源码下载链接 部分直接置下 /* index.css */ body { max-width: 320px; max-width: 540px; margin: 0 auto; font:normal 14px/1.5 Tahoma, "Lucida Gran
阅读全文
posted @
2021-06-02 17:25
摸鱼time
阅读(98)
推荐(0)
FLEX弹性布局_ 初识1
摘要:FLEX弹性布局_ 初识1 常见父项属性     flex-direction: 设置主轴方向     justify-content: 设置主轴上的子元素排列方式     flex-wrap: 设置子元
阅读全文
posted @
2021-06-02 17:13
摸鱼time
阅读(57)
推荐(0)
HTML学习笔记_02表格
摘要:HTML学习_02表格 表格标签 合并单元格 表格标签 标签 说明 <table></table> 定义表格的标签 <tr></tr> 定义表格中的行,必须嵌套在<table>标签中 <td></td> 定义表格中的单元格,必须嵌套在<tr></tr>中 <th></th> 表头单元格,类似于<td
阅读全文
posted @
2021-04-09 14:45
摸鱼time
阅读(92)
推荐(0)
HTML学习笔记_01基础
摘要:HTML学习笔记_01基础 一. 基本结构 二. 基础标签 1. 文档类型声明 2. 定义网站语言 3. 字符集声明 4. 注释 5. 换行标签 6. 插入图片 7. 标题标签 8. 段落标签 9. 文本格式化标签 10. div标签 11. span标签 12. 超链接标签 13. 锚点链接标签
阅读全文
posted @
2021-04-09 11:51
摸鱼time
阅读(71)
推荐(0)