2021年1月15日
摘要: js 自定义一个随机函数(不像php直接内置shuffle函数): function shuffle(arr) { for (var i = arr.length - 1; i >= 0; i--) { var randomIndex = Math.floor(Math.random() * (i 阅读全文
posted @ 2021-01-15 23:40 星空守望者--jkmiao 阅读(161) 评论(0) 推荐(0) 编辑
摘要: CSS 样式: alert { display: none; position: fixed; top: 50%; left: 50%; min-width: 300px; max-width: 600px; transform: translate(-50%,-50%); z-index: 999 阅读全文
posted @ 2021-01-15 23:31 星空守望者--jkmiao 阅读(1697) 评论(0) 推荐(0) 编辑