티스토리 뷰
Ajax.request
Ajax.update
작동시마다 자동으로 '기다려주세요' 와 같은 표시를 하고싶을때
표시를 1개로 통일하여 사용하는것이다.
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 | <style type= "text/css" > <!-- div.indicator { position: fixed; bottom: 0; padding: 0; height: 20px; margin: 0; padding: 5px; width: 100%; background-color: #FFFF99; display: block; text-align: center; font: bold 1.3em 'Verdana, Arial, Helvetica, sans-serif' ; } --> </style> <script type= "text/javascript" > //<![CDATA // Global Ajax Indicator var Indicator = Class.create({ initialize: function () { this .element = document.createElement( 'div' ); this .element.setStyle({ display: 'none' }); this .element.addClassName( 'indicator' ); this .element.update( '<img src="/images/protoload/waiting.gif" width="16" height="16" align="absmiddle"> Working...' ); document.body.insert( this .element, { position: 'bottom' }); }, show: function () { //this.element.show(); Effect.Appear( this .element, {duration: 0.25, queue: 'end' } ); }, hide: function () { //this.element.hide(); Effect.Fade( this .element, {duration: 0.25, queue: 'end' } ); } }); document.observe( 'dom:loaded' , function (e) { // Indicator Indicator = new Indicator(); // Indicator 이용 Ajax 작동상태 표시기 셋팅 Ajax.Responders.register({ onCreate: function () { Indicator.show(); Ajax.activeRequestCount++; }, onComplete: function () { Indicator.hide(); Ajax.activeRequestCount--; } }); }); //]]> </script> |
'웹프로그래밍 > js' 카테고리의 다른 글
PrototypeXtensions (0) | 2009.04.23 |
---|---|
JS Tree 링크들 (0) | 2009.04.08 |
scriptaculous 웹문서 (0) | 2009.03.25 |
Prototype.js 확장 컨트롤 LivePipe UI (0) | 2009.03.25 |
[Prototype] Class, invoke 사용예제 (0) | 2009.03.24 |
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
- Make Use Of
- How to geek
- 인터넷 통계정보 검색시스템
- 트위터 공유 정보모음
- 웹표준KR
- 치우의 컴맹탈출구
- Dev. Cheat Sheets
- w3schools
- Dev. 조각들
- ASP Ajax Library
- CSS Tricks
- WebResourcesDepot
- jQuery Selectors Tester
- DeveloperSnippets
- Smashing Magazine
- Nettuts+
- devListing
- 웹 리소스 사이트(한)
- Mobile tuts+
- Dream In Code
- Developer Tutorials
- CSS3 Previews
- 자북
- 안드로이드 사이드
- Code Visually
- Code School
- SQLer.com
- 무료 파워포인트 템플릿
- iconPot
- Free PowerPoint Templates
- Design Bombs
- Web Designer Wall
- 1st Webdesigner
- Vandelay Design
- 무료 벡터 이미지 사이트들
- Tripwire Magazine
- Web TrendSet
- WebMonkey
- 윤춘근 프리젠테이션 디자이너 블로그
- cz.cc 무료 DNS
- [웹하드] MediaFire
- [웹하드] DivShare
- 한컴 인터넷 오피스
TAG
- 워드프레스
- IOS
- ASP
- iphone
- laravel
- CSS
- JQuery
- API
- iis
- 한글
- Prototype
- Docker
- Linux
- mssql
- PHP
- nodejs
- git
- classic asp
- javascript
- IE
- Android
- centos
- nginx
- sencha touch
- JSON
- Mac
- Wordpress
- Debug
- Chrome
- 안드로이드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함