B2BÍøÂçÈí¼þ

 ÕÒ»ØÃÜÂë
 Á¢¼´×¢²á ÉóºËÍøÕ¾ºÅ:QQ:896757558
ËÑË÷
²é¿´: 1|»Ø¸´: 0
´òÓ¡ ÉÏÒ»Ö÷Ìâ ÏÂÒ»Ö÷Ìâ

hidµÄ»¬¶¯Ã»ÓаٷֱÈ×ø±ê»¬¶¯Âð

[¸´ÖÆÁ´½Ó]

979

Ö÷Ìâ

984

Ìû×Ó

7193

»ý·Ö

abc

Rank: 9Rank: 9Rank: 9

»ý·Ö
7193
Ìø×ªµ½Ö¸¶¨Â¥²ã
Â¥Ö÷
hidµÄ»¬¶¯Ã»ÓаٷֱÈ×ø±ê»¬¶¯Âð
hidµÄ»¬¶¯Ã»ÓаٷֱÈ×ø±ê»¬¶¯Âð B2BÍøÂçÈí¼þ

hidµÄ»¬¶¯Ã»ÓаٷֱÈ×ø±ê»¬¶¯Âð B2BÍøÂçÈí¼þ

  1. // 🍎½»Á÷QQȺ711841924Ⱥһ£¬Æ»¹ûÄÚ²âȺ£¬528816639
  2. // ¸ÃʾÀýÑÝʾÈçºÎʹÓðٷֱÈ×ø±ê½øÐ묶¯²Ù×÷

  3. /**
  4. * ʹÓðٷֱÈ×ø±ê½øÐ묶¯µÄº¯Êý
  5. * @param {number} startXPercent - ÆðʼµãX×ø±ê°Ù·Ö±È (0-1)
  6. * @param {number} startYPercent - ÆðʼµãY×ø±ê°Ù·Ö±È (0-1)
  7. * @param {number} endXPercent - ½áÊøµãX×ø±ê°Ù·Ö±È (0-1)
  8. * @param {number} endYPercent - ½áÊøµãY×ø±ê°Ù·Ö±È (0-1)
  9. * @param {number} duration - »¬¶¯³ÖÐøÊ±¼ä(ºÁÃë)
  10. */
  11. function swipeWithPercentCoordinates(startXPercent, startYPercent, endXPercent, endYPercent, duration) {
  12.     // ½«°Ù·Ö±È×ø±êת»»ÎªÊµ¼ÊÏñËØ×ø±ê
  13.     var startX = screen.percentToWidth(startXPercent);
  14.     var startY = screen.percentToHeight(startYPercent);
  15.     var endX = screen.percentToWidth(endXPercent);
  16.     var endY = screen.percentToHeight(endYPercent);
  17.    
  18.     // Ö´Ð묶¯²Ù×÷
  19.     hid.swip(startX, startY, endX, endY, duration, 0, 0);
  20.    
  21.     printl("ÒÑÖ´Ð묶¯²Ù×÷: ´Ó(" + startXPercent*100 + "%, " + startYPercent*100 + "%) µ½ (" +
  22.            endXPercent*100 + "%, " + endYPercent*100 + "%)£¬³ÖÐøÊ±¼ä: " + duration + "ms");
  23. }

  24. /**
  25. * Ä£ÄâÓû§³£Óû¬¶¯²Ù×÷µÄº¯Êý
  26. */
  27. function commonSwipeGestures() {
  28.     printl("=== ³£Óû¬¶¯²Ù×÷ʾÀý ===");
  29.    
  30.     // 1. ÏòÓÒ»¬¶¯ (ÀýÈçÔÚÏà²áÖÐÏòÓÒÇл»Í¼Æ¬)
  31.     printl("1. ÏòÓÒ»¬¶¯");
  32.     swipeWithPercentCoordinates(0.2, 0.5, 0.8, 0.5, 300);
  33.     sleep.millisecond(1000);
  34.    
  35.     // 2. Ïò×󻬶¯ (ÀýÈçÔÚÏà²áÖÐÏò×óÇл»Í¼Æ¬)
  36.     printl("2. Ïò×󻬶¯");
  37.     swipeWithPercentCoordinates(0.8, 0.5, 0.2, 0.5, 300);
  38.     sleep.millisecond(1000);
  39.    
  40.     // 3. ÏòÉÏ»¬¶¯ (ÀýÈçÏòÉϹö¶¯Ò³Ãæ)
  41.     printl("3. ÏòÉÏ»¬¶¯");
  42.     swipeWithPercentCoordinates(0.5, 0.8, 0.5, 0.2, 500);
  43.     sleep.millisecond(1000);
  44.    
  45.     // 4. ÏòÏ»¬¶¯ (ÀýÈçÏòϹö¶¯Ò³Ãæ)
  46.     printl("4. ÏòÏ»¬¶¯");
  47.     swipeWithPercentCoordinates(0.5, 0.2, 0.5, 0.8, 500);
  48.     sleep.millisecond(1000);
  49.    
  50.     // 5. ´ÓÆÁÄ»µ×²¿ÏòÉÏ»¬¶¯ (ÀýÈç´ò¿ªÍ¨ÖªÀ¸)
  51.     printl("5. ´Óµ×²¿ÏòÉÏ»¬¶¯");
  52.     swipeWithPercentCoordinates(0.5, 0.9, 0.5, 0.1, 800);
  53.     sleep.millisecond(1000);
  54.    
  55.     printl("ËùÓ묶¯²Ù×÷ÑÝʾÍê±Ï");
  56. }

  57. /**
  58. * ×Ô¶¨Ò廬¶¯²Ù×÷º¯Êý
  59. * @param {string} direction - »¬¶¯·½Ïò ("up", "down", "left", "right")
  60. * @param {number} duration - »¬¶¯³ÖÐøÊ±¼ä(ºÁÃë)
  61. */
  62. function customSwipe(direction, duration) {
  63.     printl("Ö´ÐÐ×Ô¶¨Ò廬¶¯: " + direction);
  64.    
  65.     switch(direction) {
  66.         case "up":
  67.             swipeWithPercentCoordinates(0.5, 0.7, 0.5, 0.3, duration);
  68.             break;
  69.         case "down":
  70.             swipeWithPercentCoordinates(0.5, 0.3, 0.5, 0.7, duration);
  71.             break;
  72.         case "left":
  73.             swipeWithPercentCoordinates(0.7, 0.5, 0.3, 0.5, duration);
  74.             break;
  75.         case "right":
  76.             swipeWithPercentCoordinates(0.3, 0.5, 0.7, 0.5, duration);
  77.             break;
  78.         default:
  79.             printl("δ֪µÄ»¬¶¯·½Ïò: " + direction);
  80.     }
  81. }

  82. // ʹÓÃʾÀý
  83. printl("=== °Ù·Ö±È×ø±ê»¬¶¯Ê¾Àý ===");

  84. // ¼ì²éHIDÊÇ·ñ¿ªÆô
  85. if (hid.isOn()) {
  86.     printl("HIDÉ豸ÒÑ¿ªÆô");
  87.    
  88.     // ÑÝʾ³£Óû¬¶¯²Ù×÷
  89.     commonSwipeGestures();
  90.    
  91.     // ÑÝʾ×Ô¶¨Ò廬¶¯²Ù×÷
  92.     printl("\n=== ×Ô¶¨Ò廬¶¯²Ù×÷ ===");
  93.     customSwipe("up", 400);
  94.     sleep.millisecond(500);
  95.     customSwipe("down", 400);
  96.     sleep.millisecond(500);
  97.     customSwipe("left", 300);
  98.     sleep.millisecond(500);
  99.     customSwipe("right", 300);
  100.    
  101.     printl("\nËùÓÐʾÀýÖ´ÐÐÍê±Ï");
  102. } else {
  103.     printl("´íÎó: HIDÉ豸먦Æô£¬ÇëÏÈ¿ªÆôHIDÉ豸");
  104. }
¸´ÖÆ´úÂë


»Ø¸´

ʹÓõÀ¾ß ¾Ù±¨

±¾°æ»ý·Ö¹æÔò

¹Ø±Õ

QQ|»ÓªÏúÈí¼þ×ÛºÏÌÖÂÛ|»ÓªÏúÈí¼þÓÐÎʱشð|»ÓªÏúÈí¼þ½Ì³Ì×¨Çø|»ÓªÏúÈí¼þPOST½Å±¾·ÖÏí|»ÓªÏúÈí¼þÆÕͨ½Å±¾·ÖÏí|»ÓªÏúÈí¼þÈí¼þ×ÊѶ|»ÓªÏúÈí¼þ¾«Æ·Èí¼þ|»ÓªÏúÈí¼þ¸üй«¸æ|ÓªÏúÈí¼þ|B2BÈí¼þ|B2BÍøÂçÈí¼þ ( ¾©ICP±¸09078825ºÅ )±¾ÍøÕ¾¿ª·¢µÄÓªÏúÈí¼þÊÇÒ»¿îеÄÍøÂçÓªÏúÈí¼þ£¬Õâ¿îÓªÏú¿ÉÒÔÈ¥ÍøÕ¾Èí¼þ£¬²©¿ÍÈí¼þ£¬B2BÈí¼þ£¬·ÖÀàÐÅÏ¢Íø·¢Ìù£¬¿ÉÒÔÇÀɳ·¢£¬¿ÉÒÔµ½°Ù¶ÈÎÄ¿âÉÏ´«WORDÎĵµ£¬¿ÉÒÔµ½Ò»Ð©ÊÇÏà²áÍøÕ¾×Ô¶¯ÉÏ´«Í¼Æ¬£¬Õâ¸ö×Ô¶¯·¢ÌûÈí¼þ×Ô´øÔÆÖ©Ö룬¼Ó¿ìÊÕ¼£¬ÓÐ6ÖÖ¶Ô½Ó´òÂë½Ó¿Ú£¬·½±ã£¬Ð§Âʸߣ¬Ëٶȿ죬¶øÇÒ¶ÔÍ϶¯µÄÑéÖ¤ÂëÈ«ÍøµÚÒ»¼Ò¶À¼ÒÖ§³Ö£¬È«²¿Ô­´´¼¼Êõ£¬¶À¼ÒÑз¢£¬Õý°æÔ­´´´ø°æÈ¨Èí¼þ¡£Ñ¡ÔñÍòÄÜÓªÏúÈí¼þ£¬¾ÍÑ¡ÔñÁËÒ»ÖÖ׬ǮµÄЧÂÊ£¬´ÓûÓб»³¬Ô½¹ý£¬Ò»Ö±ÔÚŬÁ¦Ñз¢Ð¼¼Êõ¡£·Å·ÉÃÎÏ룬½â·ÅË«ÊÖ£¬À´µã´´Ò⣬³É¾ÍÄãµÄÃÎÏ룬¾ÍÔÚÍòÄÜÓªÏúÈí¼þ¿ªÊ¼

map2

GMT+8, 2025-11-12 11:31 , Processed in 0.225717 second(s), 35 queries .

¿ìËٻظ´ ·µ»Ø¶¥²¿ ·µ»ØÁбí