摘要: let Drag = function () { function isElement(obj) { return (typeof HTMLElement 'object') ? (obj instanceof HTMLElement) : !!(obj && typeof obj 'object' 阅读全文
posted @ 2021-04-23 14:24 Gatico 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>图片滚动</title> 6 </head> 7 <style> 8 #box { 9 width: 100px; 10 border: 1 阅读全文
posted @ 2021-02-02 15:55 Gatico 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1 public static void sort(int arr[]) { 2 int start = 0; 3 int length = arr.length; 4 while (start < arr.length / 2) { 5 int min = arr[start], mini = s 阅读全文
posted @ 2019-12-13 14:45 Gatico 阅读(354) 评论(6) 推荐(0) 编辑