source: ether_statistics/web/resources/js/Wijmo.2.2.2/Wijmo-Complete/development-bundle/samples/lightbox/playpause.html @ 651

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

wijmo

File size: 2.4 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4        <title>Lightbox - Play Pause Buttons</title>
5        <meta charset="utf-8" />
6        <meta name="description" content="" />
7        <meta name="keywords" content="" />
8        <meta name="author" content="ComponentOne" />
9       
10        <link href="../../themes/rocket/jquery-wijmo.css" rel="stylesheet" type="text/css" />
11       
12    <script src="../../external/jquery-1.8.0.min.js" type="text/javascript"></script>
13    <script src="../../external/jquery-ui-1.8.23.custom.min.js" type="text/javascript"></script>
14    <link href="../../themes/wijmo/jquery.wijmo-open.2.2.2.css" rel="stylesheet" type="text/css" />
15        <script src="../../external/jquery.wijmo-open.all.2.2.2.min.js" type="text/javascript"></script>
16        <link href="../../themes/wijmo/jquery.wijmo.wijlightbox.css" rel="stylesheet" type="text/css"/> 
17        <script src="../../wijmo/jquery.wijmo.wijlightbox.js" type="text/javascript"></script> 
18        <script type="text/javascript">
19                $(function () {
20                        $("#lightbox").wijlightbox({
21                                showTimer: true,
22                                ctrlButtons: 'play|stop',
23                                loop: false
24                        });
25                });
26        </script>
27</head>
28
29<body class="demo-single">
30        <div class="container">
31                <div class="header">
32                        <h2>Play & Pause Buttons</h2>
33                </div>
34                <div class="main demo">
35                        <!-- Begin demo markup -->
36                                <div id="lightbox">
37                                        <a href="http://lorempixum.com/600/400/sports/1" rel="wijlightbox[stock];player=img">
38                                                <img src="http://lorempixum.com/150/125/sports/1" title="Sports 1" alt="Sports 1" /></a> 
39                                        <a href="http://lorempixum.com/600/400/sports/2" rel="wijlightbox[stock];player=img">
40                                                <img src="http://lorempixum.com/150/125/sports/2" title="Sports 2" alt="Sports 2" /></a> 
41                                        <a href="http://lorempixum.com/600/400/sports/3" rel="wijlightbox[stock];player=img">
42                                                <img src="http://lorempixum.com/150/125/sports/3" title="Sports 3" alt="Sports 3" /></a> 
43                                        <a href="http://lorempixum.com/600/400/sports/4" rel="wijlightbox[stock];player=img">
44                                                <img src="http://lorempixum.com/150/125/sports/4" title="Sports 4" alt="Sports 4" /></a>
45                                </div>
46                        <!-- End demo markup -->
47                        <div class="demo-options">
48                        <!-- Begin options markup -->
49                               
50                        <!-- End options markup -->
51                        </div>
52                </div>
53                <div class="footer demo-description">
54                        <p>This sample demonstrates how the keyboard can be used to scroll through images in a wijlightbox widget by setting the keyNav option.</p>
55                </div>
56        </div>
57</body>
58
59</html>
Note: See TracBrowser for help on using the repository browser.