728x90
SMALL
jQuery 를 이용하여대기상태의 커서를원하는 모양으로 변경한다.
$( document).ready(function() {
...
//////////////////////////////////////////
// 대기상태의 커서변경
// 커서의 위치를 중앙으로 변경하는 jQuery함수
jQuery.fn.center = function () {
this.css("position", "absolute");
this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
return this;
}
// Create img dom element and insert it into our document
var loading = $("<img alt='loading' src='/img/ajax-loader.gif' />").appendTo( document.body).hide();
loading.ajaxStart(function() {
$(this).center().show();})
.ajaxStop(function() {
$(this).hide();
});
//////////////////////////////////////////
...
});
'기본카테고리' 카테고리의 다른 글
[Windows 2008 Server] IIS 7.0에 PHP붙이기 (0) | 2011.05.09 |
---|---|
[Windows]아파치 및 PHP 설치/FTP서버 설치 (0) | 2010.12.10 |
[PHP]document 의 초기화 (0) | 2010.11.19 |
[PHP]현재 화면을 새로고침 할려면 (0) | 2010.11.19 |
[PHP]그 달의 마지막 날짜 구하는 방법 (0) | 2010.11.19 |