首页
前端
前端整合
HTML
CSS
JavaScript
前端UI
Vue2
Vue2-前端UI插件
React
React-前端UI插件
VSCode
PhotoShop
后端
后端整合
Linux
Java
MySQL
Redis
Spring Boot
IDEA
H2数据库
其他
其他整合
全栈开发
Windows
IIS建站
SVN
Git
分享
Mac
清单
标签
分类
归档
地图
RSS
友链
留言板
关于页面
1
使用chat GPT无需翻墙(需付费~)
2
禁用网站的右键、审查元素
3
宝塔的nginx开机后不会自动启动
4
tar压缩和解压文件或文件夹
5
关闭WindowsDefender
Chason
宁可偏执,也不能放弃理想。
https://www.rmbxz.com
累计撰写
324
篇文章
累计创建
54
个标签
累计收到
13
条评论
栏目
首页
前端
前端整合
HTML
CSS
JavaScript
前端UI
Vue2
Vue2-前端UI插件
React
React-前端UI插件
VSCode
PhotoShop
后端
后端整合
Linux
Java
MySQL
Redis
Spring Boot
IDEA
H2数据库
其他
其他整合
全栈开发
Windows
IIS建站
SVN
Git
分享
Mac
清单
标签
分类
归档
地图
RSS
友链
留言板
关于页面
搜索
标签搜索
VMware
Debian
office
Discuz!Q
Windows11
Vue3-前端UI插件
Naive
Vue3
mui
React-前端UI插件
Mac
MySQL
Spring Boot
IDEA
Vue2
VSCode
other
分享
Vue2-前端UI插件
UI
后端
前端
Redis
Nuxt.js
yarn
npm
Java
前端插件
JavaScript
Flex
Windows
html
验证码
全栈开发
pixiv
Windows10
SVN
PhotoShop
娱乐
React
Git
Putty
WinSCP
NodeJS
宝塔
LNMP
H2数据库
Linux
CentOS7服务
systemctl
FireWalld
CSS
CentOS
Nginx
以下是
前端
相关的文章
2021-03-11
优化 BootCDN
https://www.bootcdn.cn/稳定、快速、免费的前端开源项目 CDN 加速服务https://zhuanlan.zhihu.com/p/97108248前端 CDNJS 库及 Google Fonts、Ajax 和 Gravatar 国内加速服务https://sb.sb/blog/
2021-03-11
858
0
0
HTML
2021-03-01
Live2D 看板娘
https://github.com/search?q=%E7%9C%8B%E6%9D%BF%E5%A8%98https://github.com/stevenjoezhang/live2d-widgethttps://github.com/summerscar/live2dDemohttps://
2021-03-01
913
0
0
前端插件
UI
2021-02-03
使用Nuxt.js做SSR
精简说明:1、SEO优化,适合搜索引擎收录。2、服务端渲染,加载速度快。3、自动代码分层,强大的路由功能,支持异步数据。4、支持热加载。以下是转载内容:https://blog.csdn.net/qq_40602785/article/details/105073940介绍先来说说为什么要做 SSR
2021-02-03
872
0
0
Nuxt.js
2021-02-03
建立Nuxt.js项目
yarn create nuxt-app yzgcs官网教程地址:https://zh.nuxtjs.org/docs/2.x/get-started/installationyarn网址: https://classic.yarnpkg.com/en/docs/cli/createyarn cre
2021-02-03
803
0
0
Nuxt.js
2021-02-03
淘宝NPM镜像
原文地址:https://npm.taobao.org/淘宝 NPM 镜像这是一个完整 npmjs.org 镜像,你可以用此代替官方版本(只读),同步频率目前为 10分钟 一次以保证尽量与官方服务同步。当前 registry.npm.taobao.org 是从 r.cnpmjs.org 进行全量同步
2021-02-03
939
0
0
npm-cnpm-yarn
2021-02-03
清除npm yarn缓存
清除npm缓存:npm cache clean --forceyarn命令yarn cache listYarn 会在你的用户目录下开辟一块全局缓存用以保存下载的包。yarn cache list 用于列出所有已经缓存的包。yarn cache dir执行 yarn cache dir 命令会打印出
2021-02-03
2299
0
0
npm-cnpm-yarn
2021-02-03
npm安装依赖的命令说明
npm命令:npm install xxx:安装依赖到项目目录下,不会将模块依赖写入devDependencies或dependencies。npm install xxx -g:将依赖安装到全局,具体安装到哪个磁盘位置,主要是看npm cinfig prefix的位置。npm install xx
2021-02-03
994
0
0
npm-cnpm-yarn
2021-02-03
yarn (npm) 切换设置镜像源
原文地址:https://www.cnblogs.com/momozjm/p/10635941.html设置镜像源1、查看一下当前源yarn config get registry2、切换为淘宝源yarn config set registry https://registry.npm.taobao
2021-02-03
1116
0
0
npm-cnpm-yarn
2021-02-03
【JS】defer和async的区别
参考:https://segmentfault.com/q/1010000000640869先来试个一句话解释仨,当浏览器碰到 script 脚本的时候:<script src="script.js"></script>没有 defer 或 async,浏
2021-02-03
872
0
0
JavaScript
2021-02-03
document.documentElement对象的clientWidth、offsetWidth、scrollWidth、clientLeft、offsetLeft、scrollLeft
原文链接:https://blog.csdn.net/weixin_40568715/article/details/80356147document.documentElement.clientWidth获取浏览器窗口文档显示区域的宽度,不包括滚动条。document.documentElemen
2021-02-03
857
0
0
JavaScript
2021-02-03
js判断滚轮滚动
var scrollFunc = function(e) { e = e || window.event; if (e.wheelDelta) { //第一步:先判断浏览器IE,谷歌滑轮事件 if (e.wheelDel
2021-02-03
937
0
0
JavaScript
2021-02-03
移动端和PC端识别
<script> if (navigator.platform.indexOf("Win32") != -1) { //pc window.location.href =
2021-02-03
902
0
0
JavaScript
2021-02-03
javascript中 visibility和display的区别
1、占用域的空间不同。visibility要占用域的空间,而display则不占用。visibility和display都可以实现对页的隐藏,例如:将元素display属性设为 block,会在该元素后换行。将元素display属性设为 inline,会消除元素换行。将元素display属性设为 n
2021-02-03
820
0
0
JavaScript
2021-02-03
js判断滚轮(防止多次触发)
//防止特定时间内多次触发鼠标滚轮操作var flag_mouse;function rst_flag_mouse() { flag_mouse = false;}var scrollFunc = function(e) { e = e || window.event; // wi
2021-02-03
1083
0
0
JavaScript
2021-02-03
js代码中引入js文件
原文链接:https://blog.csdn.net/qq_42249896/article/details/90769809方式一:document.write("<script src='xxx.js'></script>");方式二:var ele=
2021-02-03
1024
0
0
JavaScript
2021-02-03
阻止移动端H5开发浏览器默认左右滑动行为
原文链接:https://blog.csdn.net/qq_37028216/article/details/88310634原文链接:https://blog.csdn.net/qq_37028216/article/details/88310634Touch事件小知识1.避免点击300ms延迟c
2021-02-03
887
0
0
JavaScript
2021-02-03
js跳转页面与打开新窗口的方法
参考:https://www.cnblogs.com/lijshui/p/7451360.html精简Vue文件内部方法 methods: { gotolink(url) { // 同窗口打开 window.location.href = url; // 新窗口
2021-02-03
869
0
0
JavaScript
2021-02-03
export
参考:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Statements/export在创建JavaScript模块时,<strong>export</strong> 语句用于从模块中导出实
2021-02-03
1014
0
0
JavaScript
2021-02-03
动态加载、移除js/css文件
动态加载、移除js/css文件参考:https://blog.csdn.net/dongsdh/article/details/79621125javascript 如何禁用link的css文件呢?参考:http://www.maomao365.com/?p=17584摘要:下文讲述使用javasc
2021-02-03
875
0
0
JavaScript
2021-02-03
【JS】图片404 解决办法
https://stackoverflow.com/questions/3019077/detecting-an-image-404-in-javascripthttps://stackoverflow.com/questions/53215071/how-to-do-a-fallback-img-
2021-02-03
725
0
0
JavaScript
2021-02-02
【CSS】 文字动画效果
源地址:https://codepen.io/FelixRilling/pen/qzfoc效果:HTML:<div id="container"> <p><a href="https://en.wikipedia.org/wiki/Red
2021-02-02
3136
0
0
css 动画
2021-01-26
【JS】for in 与 for of
迭代器和for-of循环最早的数组遍历方式var a = ["a", "b", "c"];for(var index = 0;index < a.length;index++){console.log(a[index]);}自从ES5
2021-01-26
2977
0
0
JavaScript
2021-01-26
【JS】字符分割
方法一:var num = 123456;var digits = num.toString().split('');var realdigits = digits.map(Number);console.log(realDigits);方法二:[...num+''].map(n=>+n) /
2021-01-26
2664
0
0
JavaScript
2021-01-26
【JS】实用工具库
Lodash 是一个一致性、模块化、高性能的 JavaScript 实用工具库。https://www.lodashjs.com/
2021-01-26
2615
0
0
前端插件
JavaScript
2021-01-26
【JS】解析、验证、操作和显示日期和时间
dayjshttps://dayjs.fenxianglu.cn/moment.js(作者跑路了)http://momentjs.cn/
2021-01-26
2530
0
0
前端插件
JavaScript
4
5
6
7
8