source: ether_statistics/web/resources/js/Wijmo.2.2.2/Wijmo-Complete/development-bundle/samples/gallery/iframe.html @ 608

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

images

File size: 3.4 KB
Line 
1<!doctype html>
2<html lang="en">
3<head>
4    <title>Gallery - Iframe</title>
5    <meta charset="utf-8" />
6    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7    <meta name="description" content="Overview" />
8    <meta name="keywords" content="" />
9    <meta name="author" content="ComponentOne" />
10    <link href="../../themes/rocket/jquery-wijmo.css" rel="stylesheet" type="text/css" />
11    <link href="../../themes/wijmo/jquery.wijmo-open.2.2.2.css" rel="stylesheet" type="text/css" />
12    <link href="../../themes/wijmo/jquery.wijmo.wijtree.css" rel="stylesheet" type="text/css" />
13    <script src="../../external/jquery-1.8.0.min.js" type="text/javascript"></script>
14    <script src="../../external/jquery-ui-1.8.23.custom.min.js" type="text/javascript"></script>
15    <script src="../../external/jquery.wijmo-open.all.2.2.2.min.js" type="text/javascript"></script>
16    <link href="../../themes/wijmo/jquery.wijmo.wijcarousel.css" rel="stylesheet" type="text/css" />
17    <script src="../../wijmo/jquery.wijmo.wijcarousel.js" type="text/javascript"></script>
18    <link href="../../themes/wijmo/jquery.wijmo.wijgallery.css" rel="stylesheet" type="text/css" />
19    <script src="../../wijmo/jquery.wijmo.wijgallery.js" type="text/javascript"></script>
20    <link href="../../themes/wijmo/jquery.wijmo.wijpager.css" rel="stylesheet" type="text/css" />
21    <script src="../../wijmo/jquery.wijmo.wijpager.js" type="text/javascript"></script>
22    <script id="scriptInit" type="text/javascript">
23        $(document).ready(function () {
24            $("#wijgallery,#wijgallery2").wijgallery({
25                showControlsOnHover: false,
26                thumbsDisplay: 4,
27                thumbsLength: 100,
28                mode: "iframe",
29                showCaption: false,
30                showTimer: false
31            });
32        });
33    </script>
34    <style type="text/css">
35        #wijgallery
36        {
37            width: 750px;
38            height: 500px;
39        }
40    </style>
41</head>
42<body class="demo-single">
43    <div class="container">
44        <div class="header">
45            <h2>
46                Iframe</h2>
47        </div>
48        <div class="main demo">
49            <!-- Begin demo markup -->
50            <div>
51                <div id="wijgallery" class="">
52                    <ul class="">
53                        <li class=""><a href="http://www.yahoo.com/">
54                            <img src="http://cdn.wijmo.com/images/yahoo_thumb.png" title="Yahoo" alt="Yahool" /></a> </li>
55                        <li class=""><a href="http://www.componentone.com">
56                            <img src="http://cdn.wijmo.com/images/componentone_thumb.png" title="ComponentOne" alt="ComponentOne" /></a> </li>
57                        <li class=""><a href="http://www.microsoft.com">
58                            <img src="http://cdn.wijmo.com/images/microsoft_thumb.png" title="Microsoft" alt="Microsoft" /></a> </li>
59                    </ul>
60                </div>
61            </div>
62            <!-- End demo markup -->
63            <div class="demo-options">
64                <!-- Begin options markup -->
65                <!-- End options markup -->
66            </div>
67        </div>
68    <div class="footer demo-description">
69        <p>
70            This sample demonstrates how the wijgallery widget can be used to show images or videos in IFrame by setting the mode option.</p>
71    </div>
72    </div>
73</body>
74</html>
Note: See TracBrowser for help on using the repository browser.