source: ether_statistics/web/resources/js/Wijmo.2.2.2/Wijmo-Open/development-bundle/samples/video/hover.html @ 608

Last change on this file since 608 was 608, checked in by vmipsl, 12 years ago

images

File size: 2.1 KB
Line 
1<!doctype html>
2<html lang="en">
3<head>
4    <title>Video - Overview</title>
5    <meta charset="utf-8" />
6    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7    <meta name="description" content="%description%" />
8    <meta name="keywords" content="" />
9    <meta name="author" content="ComponentOne" />
10
11    <link href="../../themes/rocket/jquery-wijmo.css" rel="stylesheet" type="text/css" />
12   
13    <link href="../../themes/wijmo/jquery.wijmo.wijvideo.css" rel="stylesheet" type="text/css" />
14    <script src="../../external/jquery-1.8.0.min.js" type="text/javascript"></script>
15    <script src="../../external/jquery-ui-1.8.23.custom.min.js" type="text/javascript"></script>
16    <script src="../explore/js/jquery.hoverIntent.minified.js" type="text/javascript"></script>
17    <script src="../../wijmo/jquery.wijmo.wijvideo.js" type="text/javascript"></script>
18    <script src="../../wijmo/jquery.wijmo.wijtooltip.js" type="text/javascript"></script>
19    <script type="text/javascript">
20        $(document).ready(function () {
21            $('#vid1').wijvideo({
22                showControlsOnHover: false
23            });
24        });
25    </script>
26</head>
27<body class="demo-single">
28    <div class="container">
29        <div class="header">
30            <h2>
31                Overview</h2>
32        </div>
33        <div class="main demo">
34            <!-- Begin demo markup -->
35            <video controls="controls" id="vid1" width="720" height="486">
36                <source src="http://cdn.wijmo.com/movies/wijmo.theora.ogv" type='video/ogg; codecs="theora, vorbis"'>
37                <source src="http://cdn.wijmo.com/movies/wijmo.mp4video.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
38            </video>
39            <!-- End demo markup -->
40            <div class="demo-options">
41                <!-- Begin options markup -->
42                <!-- End options markup -->
43            </div>
44        </div>
45        <div class="footer demo-description">
46            This option allows you to choose whether to show the controls on hover or leave them visible.
47        </div>
48    </div>
49</body>
50</html>
Note: See TracBrowser for help on using the repository browser.