分享一下在项目中经常使用的20个轮子[React UI组件库]Ant Design :文档齐全,社区生态良好,有手机版,还有PC版。可以用来快速创建手机/后台/内部应用的UI组件库。网址:https://ant.design/React Bootstrap : BootStrap我在JQuery时代就开始使用,现在已经推出了React Bootstrap, 虽然UI设计上没什么出彩,但是快速...
// 时间戳转换 function toHHms(timestamp) { var time = new Date(timestamp); var year = time.getFullYear(); var month = time.getMonth() + 1; var date = time.getDate(); var hours = ...
Javascript:网页可见区域宽: document.body.clientWidth 网页可见区域高: document.body.clientHeight 网页可见区域宽: document.body.offsetWidth (包括边线的宽) 网页可见区域高: document.body.offsetHeight (包括边线的高) 网页正文全文宽: document.body.scr...