VideoPlayer encapsulates video playback (audio is not supported). Fast forward, fast back set the playback position and other operations, can also set screen brightness and system sound size. You can get various gesture operation events on the module by listening to the interface.

Module details: www.apicloud.com/mod_detail/…

 

index.html

<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="Maximum - scale = 1.0, the minimum - scale = 1.0, user - scalable = 0, width = device - width, initial - scale = 1.0"/>
        <meta name="format-detection" content="tephone=no,email=no,date=no,address=no">
        <style type="text/css">
            html{ background-color: white; }
            header{ border-bottom: 1px solid #ccc; padding: 25px 0; }
            span {
                padding: 10px 15px;
                margin: 10px;
    
Copy the code