上一页 1 2 3 4 5 6 ··· 21 下一页
摘要: .project-list-ul { display: grid; margin-top: 5px; grid-template-columns: repeat(7, minmax(0,1fr)); grid-template-rows: max-content; height: calc(100% 阅读全文
posted @ 2022-09-30 20:02 春风得意之时 阅读(45) 评论(0) 推荐(0)
摘要: css样式代码为scss .u-relative, .u-rela { position: relative; } .u-absolute, .u-abso { position: absolute; } // nvue不能用标签命名样式,不能放在微信组件中,否则微信开发工具会报警告,无法使用标签名 阅读全文
posted @ 2022-09-14 11:09 春风得意之时 阅读(532) 评论(0) 推荐(0)
摘要: 假设我们有一个数组,每个元素是一个人。你面前站了一排人。 foreach 就是你按顺序一个一个跟他们做点什么,具体做什么,随便: people.forEach(function (dude) { dude.pickUpSoap(); }); map 就是你手里拿一个盒子(一个新的数组),一个一个叫他 阅读全文
posted @ 2022-08-08 14:29 春风得意之时 阅读(46) 评论(0) 推荐(0)
摘要: title sso java ^ -Dspring.datasource.url=jdbc:mysql://172.18.25.12:3307/working-drawing-1.0.0^?characterEncoding=utf-8^&allowMultiQueries=true^&failOv 阅读全文
posted @ 2022-05-05 11:51 春风得意之时 阅读(385) 评论(0) 推荐(0)
摘要: 校正windows页面在系统进行缩放后导致页面被放大的问题,通常放大比例是125%、150% /** * @author huangjf * @description 校正windows页面在系统进行缩放后导致页面被放大的问题,通常放大比例是125%、150% * **/ class DeviceP 阅读全文
posted @ 2022-02-16 14:57 春风得意之时 阅读(744) 评论(0) 推荐(0)
摘要: 花了两个多小时画的在线版冰墩墩,需要的拿去 链接地址,直接点击 在线版冰墩墩 源码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> * { margin: 0; padding: 0 } bod 阅读全文
posted @ 2022-02-14 22:41 春风得意之时 阅读(327) 评论(0) 推荐(0)
摘要: #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev 阅读全文
posted @ 2022-02-14 15:46 春风得意之时 阅读(181) 评论(0) 推荐(0)
摘要: ###maven打包命令 mvn clean package -pl {groupId}:{artifactId} -am -Dmaven.test.skip=true 阅读全文
posted @ 2022-01-14 17:06 春风得意之时 阅读(53) 评论(0) 推荐(0)
摘要: javascript中,使用forEach map遍历数组比较多 reduce函数平时用的比较少 const str = '12' const obj = {} Array.from(str).reduce((accumulator, current) => { current in accumul 阅读全文
posted @ 2022-01-06 14:12 春风得意之时 阅读(63) 评论(0) 推荐(0)
摘要: getParam: function (name) { var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i'); var r = window.location.search.substr(1).match(reg); if (r != 阅读全文
posted @ 2021-12-22 13:00 春风得意之时 阅读(1728) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 21 下一页