自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 2021-06-07

图扑使用 图扑学习类网站 官网:https://www.hightopo.com/demos/index.html 手册:https://www.kancloud.cn/hightopo/structure/463740 手册2:https://www.hightopo.com/guide/doc/ht.Block.html#addChild React–用于构建用户界面的 JavaScript 库 官网:https://react.docschina.org/ React菜鸟教程 官网:https://w

2021-06-07 15:40:08 60

原创 数组去重

let arr=[1,1,'true','true',true,true,15,15,false,false, undefined,undefined, null,null, NaN, NaN,'NaN', 0, 0, 'a', 'a',{},{}] 一、利用ES6 Set去重 function unique (arr) { return Array.from(new Set(arr)) } console.log(unique(arr)) //[1, "true", true, 15, fals

2021-04-14 14:37:18 40

原创 对输入框进行筛选正则表达式

正则表达式 输入框只能输入英文和数字: /^[0-9a-zA-Z_]*$/ 手机号格式: /^1[3|4|5|7|8][0-9]{9}$/im 身份证格式: /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/im 是否全数字: /^[0-9]*$/im 是否为空值: [null, undefined, ''].includes(value) 过滤特殊字符: /[

2021-03-10 09:43:38 171

原创 CSS实现垂直水平居中

CSS实现垂直水平居中 HTML: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" href="css/CSS实现垂直水平居中.css"> </head> <body> <div class="wrapper

2020-11-07 11:58:27 62

原创 使用css实现轮播图

使用css实现轮播图 html代码: Title **css代码:** body { width: 100%; min-width: 320

2020-11-07 11:49:14 836

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除