03 2023 档案

摘要:echarts 4.9.0 echarts-gl 1 echarts 5.4.1 echarts-gl 2 阅读全文
posted @ 2023-03-29 15:33 ni好哇 阅读(45) 评论(0) 推荐(0)
摘要:node 16.17.1 node-sass 6.0.1 sass-loader 10.4.1 参考 https://blog.csdn.net/u014361280/article/details/121030362 阅读全文
posted @ 2023-03-23 10:33 ni好哇 阅读(58) 评论(0) 推荐(0)
摘要:安装 cnpm install screenfull@4.2.0 --save 引入 import screenfull from 'screenfull' api request(element传参某个元素) 全屏 exit() 退出全屏 toggle() 切换全屏 on(event, funct 阅读全文
posted @ 2023-03-23 10:31 ni好哇 阅读(414) 评论(0) 推荐(0)
摘要:安装nodejs / nvm https://www.mintimate.cn/2021/07/26/nvmNode/ https://nvm.uihtm.com/ https://blog.csdn.net/zhouyan8603/article/details/109039732 https:/ 阅读全文
posted @ 2023-03-09 12:32 ni好哇 阅读(47) 评论(0) 推荐(0)
摘要:Less 安装使用 在 Node.js 环境中使用 Less : npm install -g less > lessc styles.less styles.css 在浏览器环境中使用 Less : <link rel="stylesheet/less" type="text/css" href= 阅读全文
posted @ 2023-03-04 16:20 ni好哇 阅读(82) 评论(0) 推荐(0)
摘要:CSS 基础 插入样式表 外链式 <link rel="stylesheet" type="text/css" href="xx.css"> 内联式 <style> </style> 行内式 <div style="xxx"> 优先级 内联样式 > id 选择器 > 类选择器 = 伪类选择器 = 属 阅读全文
posted @ 2023-03-03 20:55 ni好哇 阅读(19) 评论(0) 推荐(0)
摘要:HTML 基础 框架 <!DOCTYPE html> <!-- 保证文档正常读取 --> <html> <!-- 根元素 --> <head> <!-- 该元素的内容对用户不可见,包含例如面向搜索引擎的搜索关键字、描述、CSS 和字符编码等。 --> <meta charset="utf-8"> < 阅读全文
posted @ 2023-03-02 15:16 ni好哇 阅读(30) 评论(0) 推荐(0)
摘要:客户端和服务器 客户端与服务器的通信 互联网:错综复杂的网络,比如每个快递车走的路. TCP/IP:定义数据如何传输的通信协议,比如快递的包装,发货规则. DNS:域名系统服务器,输入一个网址时,找到网页的服务器,才能发送 HTTP 请求到正确的地方。(域名->IP),比如发货地址. HTTP:超文 阅读全文
posted @ 2023-03-01 20:50 ni好哇 阅读(97) 评论(0) 推荐(0)