当前位置: 首页>>代码示例>>Python>>正文


Python pyautogui.scroll方法代码示例

本文整理汇总了Python中pyautogui.scroll方法的典型用法代码示例。如果您正苦于以下问题:Python pyautogui.scroll方法的具体用法?Python pyautogui.scroll怎么用?Python pyautogui.scroll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyautogui的用法示例。


在下文中一共展示了pyautogui.scroll方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: scroll_down

# 需要导入模块: import pyautogui [as 别名]
# 或者: from pyautogui import scroll [as 别名]
def scroll_down(dy: int = None, iterations: int = 1):
    """Scroll down mouse event."""
    Mouse().scroll(0, -abs(dy), iterations) 
开发者ID:mozilla,项目名称:iris,代码行数:5,代码来源:mouse.py

示例2: scroll_up

# 需要导入模块: import pyautogui [as 别名]
# 或者: from pyautogui import scroll [as 别名]
def scroll_up(dy: int = None, iterations: int = 1):
    """Scroll up mouse event."""
    Mouse().scroll(0, abs(dy), iterations) 
开发者ID:mozilla,项目名称:iris,代码行数:5,代码来源:mouse.py

示例3: scroll_left

# 需要导入模块: import pyautogui [as 别名]
# 或者: from pyautogui import scroll [as 别名]
def scroll_left(dx: int = None, iterations: int = 1):
    """Scroll left mouse event."""
    Mouse().scroll(-abs(dx), 0, iterations) 
开发者ID:mozilla,项目名称:iris,代码行数:5,代码来源:mouse.py

示例4: scroll_right

# 需要导入模块: import pyautogui [as 别名]
# 或者: from pyautogui import scroll [as 别名]
def scroll_right(dx: int = None, iterations: int = 1):
    """Scroll right mouse event."""
    Mouse().scroll(abs(dx), 0, iterations) 
开发者ID:mozilla,项目名称:iris,代码行数:5,代码来源:mouse.py

示例5: scroll

# 需要导入模块: import pyautogui [as 别名]
# 或者: from pyautogui import scroll [as 别名]
def scroll(clicks):
    """Performs a scroll of the mouse scroll wheel.
    :param clicks: The amount of scrolling to perform.
    :return: None.
    """
    pyautogui.scroll(clicks) 
开发者ID:mozilla,项目名称:iris,代码行数:8,代码来源:mouse.py

示例6: test_scroll

# 需要导入模块: import pyautogui [as 别名]
# 或者: from pyautogui import scroll [as 别名]
def test_scroll(self):
        # TODO - currently this just checks that scrolling doesn't result in an error.
        pyautogui.scroll(1)
        pyautogui.scroll(-1)
        pyautogui.hscroll(1)
        pyautogui.hscroll(-1)
        pyautogui.vscroll(1)
        pyautogui.vscroll(-1) 
开发者ID:asweigart,项目名称:pyautogui,代码行数:10,代码来源:test_pyautogui.py

示例7: scroll_to

# 需要导入模块: import pyautogui [as 别名]
# 或者: from pyautogui import scroll [as 别名]
def scroll_to(value, x=None, y=None, interval=None):
	if interval is not None:
		time.sleep(interval)
	pyautogui.scroll(value, x, y)

# Create directory(s) if not exist 
开发者ID:AXeL-dev,项目名称:Dindo-Bot,代码行数:8,代码来源:tools.py


注:本文中的pyautogui.scroll方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。