用户:82428505/JS1
刷
历
编
跳到导航
跳到搜索
// 光标图像相关 $(document).ready(function() { const cursorImage1 = 'https://patchwiki.biligame.com/images/starengine/thumb/6/6f/ne33b2ui0r8dvx9kfmwtg81oiepxkne.png/32px-Cursor_up.png'; const cursorImage2 = 'https://patchwiki.biligame.com/images/starengine/thumb/6/6b/4jtuahgv71gqq1f2t64anymau5exqqw.png/32px-Cursor_down.png'; $('html').css('cursor', `url(${cursorImage1}), auto`); $(document).on('mousedown', function() { $('html').css('cursor', `url(${cursorImage2}), auto`); }); $(document).on('mouseup', function() { $('html').css('cursor', `url(${cursorImage1}), auto`); }); });