摘要:
js 自定义一个随机函数(不像php直接内置shuffle函数): function shuffle(arr) { for (var i = arr.length - 1; i >= 0; i--) { var randomIndex = Math.floor(Math.random() * (i 阅读全文
摘要:
CSS 样式: alert { display: none; position: fixed; top: 50%; left: 50%; min-width: 300px; max-width: 600px; transform: translate(-50%,-50%); z-index: 999 阅读全文