프레임셋(frameset)에서 레프트 프레임의 사이즈를 줄였다 늘였다 하기 (resize? animation?)

By | 8월 31, 2012

* 프레임셋의 cols attribute는 css속성으로 접근할 수 없기 때문에 jQuery animate를 사용할 수 없다는 특징이 있다.

            $(function () { 

                var minimizeInterval = null;
                var current = 500;
                var pace = 15;
                var stop = 100;

                window.minimize = function () {
                    minimizeInterval = setInterval(function () {
                    console.log('minimizing...');
                        $('frameset').attr('cols', current + ',*');
                        current -= pace;
                        if (current < stop) 
                            clearInterval(minimizeInterval);
                    }, 10);
                };

            });

* 출처 

   
http://stackoverflow.com/questions/11381576/animating-frame-resizing 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments