生成随机图片
function getMockImagesURL() { let arr = [200, 250, 300, 350, 400, 450]; const width = arr[Math.ceil(Math.random() * 10) % 6]; const height = arr[Math.ceil(Math.random() * 10) % 6]; return 'https://picsum.photos/${width}/${height}'; }
function getMockImagesURL() { let arr = [200, 250, 300, 350, 400, 450]; const width = arr[Math.ceil(Math.random() * 10) % 6]; const height = arr[Math.ceil(Math.random() * 10) % 6]; return 'https://picsum.photos/${width}/${height}'; }
audio支持的格式audio 定义音频 格式:mp3 wav oggmp3所有浏览器兼容ogg safari不支持wav 都支持js 能帮助生成audio对象 new Audio(); 等同于HTM...
在写js方法时,现在有很多种写法:写法1:最最常见的写法function test(params){ //内部 }写法2:变量形式,箭头函...
PHP计算:#lng为经度,lat为纬度,一定不要弄错了哦 function distance($lat1, $lng1, $lat2, $lng2){ &...
1、对象的扩展运算符(...)用于取出参数对象的所有可遍历属性,拷贝到当前对象之中。let obj1 = { name:...
1、将1,2,3,4,5转成一,二,三......export function transfromNumber(number){ const ...
大家在开发一些系统的时候会用到很多统计的图表,我在做统计报表的时候用过挺多图表插件的,现在推荐大家几款优秀、稳定、可靠、大公司开发的图表体统。 1、Highcharts Highchart...