OWL ITS + 탐지시스템(인터넷 진흥원)
jhjang
2021-10-14 722a8a9409f3bbe3da0a1c77d709d68cfb0a6705
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html ng-app="demo">
    <head>
        <title>ng-image-gallery</title>
        <meta name="viewport" content="width=device-width, initial-scale=1"/>
 
        <!-- Local Dependencies -->
        <!-- <script src="../bower_components/angular/angular.js"></script>
        <script src="../bower_components/angular-animate/angular-animate.js"></script>
        <script src="../bower_components/hammerjs/hammer.min.js"></script> -->
 
        <!-- Dependencies -->
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-animate.js"></script>
        <script src="https://rawgit.com/hammerjs/hammer.js/v2.0.8/hammer.min.js"></script>
 
        <!-- Module files-->
        <script src="../dist/ng-image-gallery.min.js"></script>
        <link href="../dist/ng-image-gallery.min.css" rel="stylesheet"/>
    </head>
    <body ng-controller="main">
        <a href="./main.html">Home</a><br/>
 
        <h1>
            <a href="https://github.com/thatisuday/ng-image-gallery" style="text-decoration:none; color:#333;">
                ng-image-gallery
            </a>
        </h1>
        
        <p>Instead of using <b>inline attributes</b> to set options, you just set up <i>conf="conf"</i> where <i>conf</i> is object bound to the scope with following boolean properties.</p>
 
        <br/>
 
        <div>
            <div ng-repeat="(key, value) in conf">
                <label><input type="checkbox" ng-model="conf[key]"/> {{key}}</label>
            </div>
        </div>
 
        <br/>
 
        <button ng-click="openGallery()">Open Gallery</button>
        <button ng-click="addPhoto()">Add Photo</button>
        <button ng-click="removePhoto()">Remove Photo</button>
        
        <br/>
        <br/>
 
        <br/>
        <br/>
 
        <ng-image-gallery images="images" methods="methods" conf="conf" on-open="opened();" on-close="closed();"></ng-image-gallery>
 
        <script>
            angular
            .module('demo', ['thatisuday.ng-image-gallery'])
            .controller('main', function($scope, $timeout, $interval){
                // Local images
                $scope.images = [
                    {
                        url : '../demo/demo-images/1.jpg',
                        thumbUrl : '../demo/demo-images/thumbs/1.jpg',
                        bubbleUrl : '../demo/demo-images/bubbles/1.jpg',
                        extUrl : 'http://google.com/image/1'
                    },
                    {
                        url : '../demo/demo-images/2.jpg',
                        thumbUrl : '../demo/demo-images/thumbs/2.jpg',
                        bubbleUrl : '../demo/demo-images/bubbles/2.jpg',
                    },
                    {
                        url : '../demo/demo-images/3.jpg',
                        thumbUrl : '../demo/demo-images/thumbs/3.jpg',
                        bubbleUrl : '../demo/demo-images/bubbles/3.jpg',
                    },
                    {
                        url : '../demo/demo-images/4.jpg',
                        thumbUrl : '../demo/demo-images/thumbs/4.jpg',
                        bubbleUrl : '../demo/demo-images/bubbles/4.jpg',
                        extUrl : 'http://google.com/image/4'
                    },
                    {
                        url : '../demo/demo-images/5.jpg',
                        thumbUrl : '../demo/demo-images/thumbs/5.jpg',
                        bubbleUrl : '../demo/demo-images/bubbles/5.jpg',
                    },
                    {
                        url : '../demo/demo-images/6.jpg',
                        thumbUrl : '../demo/demo-images/thumbs/6.jpg',
                        bubbleUrl : '../demo/demo-images/bubbles/6.jpg',
                    },
                    {
                        url : '../demo/demo-images/7.jpg',
                        thumbUrl : '../demo/demo-images/thumbs/7.jpg',
                        bubbleUrl : '../demo/demo-images/bubbles/7.jpg',
                    },
                    {
                        url : '../demo/demo-images/8.jpg',
                        thumbUrl : '../demo/demo-images/thumbs/8.jpg',
                        bubbleUrl : '../demo/demo-images/bubbles/8.jpg',
                        extUrl : 'http://google.com/image/8'
                    },
                    {
                        url : '../demo/demo-images/9.jpg',
                        thumbUrl : '../demo/demo-images/thumbs/9.jpg',
                        bubbleUrl : '../demo/demo-images/bubbles/9.jpg',
                    }
                ];
 
                /*****************************************************/
 
                // configurations
                $scope.conf = {
                    thumbnails     :     true,    
                    inline        :     false,
                    bubbles        :     true,
                    imgBubbles     :     true,    
                    bgClose        :     false
                };
 
 
                // Gallery methods gateway
                $scope.methods = {};
                $scope.openGallery = function(){
                    $scope.methods.open();
                };
                
                $scope.addPhoto = function(){
                    var n = Math.floor(Math.random() * 13) + 1;
                    $scope.images.push(
                        {
                            url : '../demo/demo-images/' + n + '.jpg',
                            thumbUrl : '../demo/demo-images/thumbs/' + n + '.jpg',
                            bubbleUrl : '../demo/demo-images/bubbles/' + n + '.jpg'
                        }
                    );
                }
                
                $scope.removePhoto = function(){
                    if($scope.images.length > 1) $scope.images.pop();
                }
 
                // Gallery callbacks
                $scope.opened = function(){
                    console.info('Gallery opened!');
                }
 
                $scope.closed = function(){
                    console.warn('Gallery closed!');
                }
            })
            ;
        </script>
    </body>
</html>