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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*!
 * jQuery UI Effects Size 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
 
//>>label: Size Effect
//>>group: Effects
//>>description: Resize an element to a specified width and height.
//>>docs: http://api.jqueryui.com/size-effect/
//>>demos: http://jqueryui.com/effect/
 
( function( factory ) {
    if ( typeof define === "function" && define.amd ) {
 
        // AMD. Register as an anonymous module.
        define( [
            "jquery",
            "../version",
            "../effect"
        ], factory );
    } else {
 
        // Browser globals
        factory( jQuery );
    }
}( function( $ ) {
 
return $.effects.define( "size", function( options, done ) {
 
    // Create element
    var baseline, factor, temp,
        element = $( this ),
 
        // Copy for children
        cProps = [ "fontSize" ],
        vProps = [ "borderTopWidth", "borderBottomWidth", "paddingTop", "paddingBottom" ],
        hProps = [ "borderLeftWidth", "borderRightWidth", "paddingLeft", "paddingRight" ],
 
        // Set options
        mode = options.mode,
        restore = mode !== "effect",
        scale = options.scale || "both",
        origin = options.origin || [ "middle", "center" ],
        position = element.css( "position" ),
        pos = element.position(),
        original = $.effects.scaledDimensions( element ),
        from = options.from || original,
        to = options.to || $.effects.scaledDimensions( element, 0 );
 
    $.effects.createPlaceholder( element );
 
    if ( mode === "show" ) {
        temp = from;
        from = to;
        to = temp;
    }
 
    // Set scaling factor
    factor = {
        from: {
            y: from.height / original.height,
            x: from.width / original.width
        },
        to: {
            y: to.height / original.height,
            x: to.width / original.width
        }
    };
 
    // Scale the css box
    if ( scale === "box" || scale === "both" ) {
 
        // Vertical props scaling
        if ( factor.from.y !== factor.to.y ) {
            from = $.effects.setTransition( element, vProps, factor.from.y, from );
            to = $.effects.setTransition( element, vProps, factor.to.y, to );
        }
 
        // Horizontal props scaling
        if ( factor.from.x !== factor.to.x ) {
            from = $.effects.setTransition( element, hProps, factor.from.x, from );
            to = $.effects.setTransition( element, hProps, factor.to.x, to );
        }
    }
 
    // Scale the content
    if ( scale === "content" || scale === "both" ) {
 
        // Vertical props scaling
        if ( factor.from.y !== factor.to.y ) {
            from = $.effects.setTransition( element, cProps, factor.from.y, from );
            to = $.effects.setTransition( element, cProps, factor.to.y, to );
        }
    }
 
    // Adjust the position properties based on the provided origin points
    if ( origin ) {
        baseline = $.effects.getBaseline( origin, original );
        from.top = ( original.outerHeight - from.outerHeight ) * baseline.y + pos.top;
        from.left = ( original.outerWidth - from.outerWidth ) * baseline.x + pos.left;
        to.top = ( original.outerHeight - to.outerHeight ) * baseline.y + pos.top;
        to.left = ( original.outerWidth - to.outerWidth ) * baseline.x + pos.left;
    }
    element.css( from );
 
    // Animate the children if desired
    if ( scale === "content" || scale === "both" ) {
 
        vProps = vProps.concat( [ "marginTop", "marginBottom" ] ).concat( cProps );
        hProps = hProps.concat( [ "marginLeft", "marginRight" ] );
 
        // Only animate children with width attributes specified
        // TODO: is this right? should we include anything with css width specified as well
        element.find( "*[width]" ).each( function() {
            var child = $( this ),
                childOriginal = $.effects.scaledDimensions( child ),
                childFrom = {
                    height: childOriginal.height * factor.from.y,
                    width: childOriginal.width * factor.from.x,
                    outerHeight: childOriginal.outerHeight * factor.from.y,
                    outerWidth: childOriginal.outerWidth * factor.from.x
                },
                childTo = {
                    height: childOriginal.height * factor.to.y,
                    width: childOriginal.width * factor.to.x,
                    outerHeight: childOriginal.height * factor.to.y,
                    outerWidth: childOriginal.width * factor.to.x
                };
 
            // Vertical props scaling
            if ( factor.from.y !== factor.to.y ) {
                childFrom = $.effects.setTransition( child, vProps, factor.from.y, childFrom );
                childTo = $.effects.setTransition( child, vProps, factor.to.y, childTo );
            }
 
            // Horizontal props scaling
            if ( factor.from.x !== factor.to.x ) {
                childFrom = $.effects.setTransition( child, hProps, factor.from.x, childFrom );
                childTo = $.effects.setTransition( child, hProps, factor.to.x, childTo );
            }
 
            if ( restore ) {
                $.effects.saveStyle( child );
            }
 
            // Animate children
            child.css( childFrom );
            child.animate( childTo, options.duration, options.easing, function() {
 
                // Restore children
                if ( restore ) {
                    $.effects.restoreStyle( child );
                }
            } );
        } );
    }
 
    // Animate
    element.animate( to, {
        queue: false,
        duration: options.duration,
        easing: options.easing,
        complete: function() {
 
            var offset = element.offset();
 
            if ( to.opacity === 0 ) {
                element.css( "opacity", from.opacity );
            }
 
            if ( !restore ) {
                element
                    .css( "position", position === "static" ? "relative" : position )
                    .offset( offset );
 
                // Need to save style here so that automatic style restoration
                // doesn't restore to the original styles from before the animation.
                $.effects.saveStyle( element );
            }
 
            done();
        }
    } );
 
} );
 
} ) );