PyAutoGUI的Tween / Easing功能



§01 能说明


  Tween / Easing 功能可指示鼠标移动到目的地时的进度。通常在一段时间内移动鼠标时,鼠标会以恒定的速度沿直线直接移动到目的地。这被称为线性补间或线性缓动函数。

  PyAutoGUI 在 pyautogui 模块中有其他可用的 Tween 功能。可以将 pyautogui.easeInQuadpyautogui.easeOutQuadpyautogui.easeOutElastic 等函数作为第 4 个参数传递给 moveTo()move()dragTo()drag() 函数,以使鼠标光标以下述状态移动,但总持续时间仍然与传递给函数的参数相同。

参数功能
pyautogui.easeInQuad开始缓慢移动,接近目的地时变快。
pyautogui.easeOutQuad开始快速移动,接近目的地时变慢。
pyautogui.easeInOutQuad开始和结束时快速移动, 中间时速度变慢。
pyautogui.easeInBounce橡皮筋 一样小幅度来回摆动,直到在目的地停顿下来
pyautogui.easeOutElastic橡皮筋 一样大幅度来回摆动,直到在目的地停顿下来

§02 例演示


>>> pyautogui.moveTo(100, 100, 2, pyautogui.easeInQuad)     # 开始缓慢移动,接近目的地时变快
>>> pyautogui.moveTo(100, 100, 2, pyautogui.easeOutQuad)    # 开始快速移动,接近目的地时变慢
>>> pyautogui.moveTo(100, 100, 2, pyautogui.easeInOutQuad)  # 开始和结束时快速移动, 中间时速度变慢
>>> pyautogui.moveTo(100, 100, 2, pyautogui.easeInBounce)   # 像 `橡皮筋` 一样小幅度来回摆动,直到在目的地停顿下来
>>> pyautogui.moveTo(100, 100, 2, pyautogui.easeInElastic)  # 像 `橡皮筋` 一样大幅度来回摆动,直到在目的地停顿下来

一步了解


如果你想进一步了解此功能,可以查看下述说明:

These tweening functions are copied from Al Sweigart’s PyTweening module: https://pypi.python.org/pypi/PyTweening https://github.com/asweigart/pytweening This module does not have to be installed to use the tweening functions.

If you want to create your own tweening function, define a function that takes a single float argument between 0.0 (representing the start of the mouse travelling) and 1.0 (representing the end of the mouse travelling) and returns a float value between 0.0 and 1.0.


相关文章:

  • Python自动化控制鼠标和键盘操作—— PyAutoGUI

本文链接:https://my.lmcjl.com/post/12538.html

展开阅读全文

4 评论

留下您的评论.