目的:防止检测
import pyautogui
#1.开始很慢 后面很快
pyautogui.moveTo(100,100,2,pyautogui.easeInQuad)
#2.开始很快,不断结束
pyautogui.moveTo(100,100,2,pyautogui.easeOutQuad)
#3.开始和结束都快,中间比较慢
pyautogui.moveTo(100,100,3,pyautogui.easeInOutQuad)
#4.一步一徘徊前进
pyautogui.moveTo(100,100,2,pyautogui.easeInBounce)
#5.徘徊幅度更大,甚至超过起点和终点
pyautogui.moveTo(100,100,2,pyautogui.easeInElastic)