回答:
これにはさまざまな方法があります。「読み込み中...」と表示されたページの小さなステータスのように、または新しいデータの読み込み中に要素全体がページをグレー表示するように騒々しいかもしれません。以下のアプローチでは、両方の方法を実行する方法を示します。
まずは、 使用するhttp://ajaxload.infoから素敵な「読み込み」アニメーションを取得してみましょう。
ajaxリクエストを行うときにいつでも表示/非表示できる要素を作成しましょう:
<div class="modal"><!-- Place at bottom of page --></div>
次に、いくつかの才能を与えましょう:
/* Start by setting display:none to make this hidden.
Then we position it in relation to the viewport window
with position:fixed. Width, height, top and left speak
for themselves. Background we set to 80% white with
our animation centered, and no-repeating */
.modal {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba( 255, 255, 255, .8 )
url('http://i.stack.imgur.com/FhHRx.gif')
50% 50%
no-repeat;
}
/* When the body has the loading class, we turn
the scrollbar off with overflow:hidden */
body.loading .modal {
overflow: hidden;
}
/* Anytime the body has the loading class, our
modal element will be visible */
body.loading .modal {
display: block;
}
では、jQueryに移りましょう。この次の部分は実際には本当に簡単です:
$body = $("body");
$(document).on({
ajaxStart: function() { $body.addClass("loading"); },
ajaxStop: function() { $body.removeClass("loading"); }
});
それでおしまい!ajaxStart
or ajaxStop
イベントが発生するたびに、body要素にいくつかのイベントをアタッチします。ajaxイベントが開始されると、「loading」クラスを本体に追加します。イベントが完了すると、「読み込み」クラスが本体から削除されます。
実際に見る:http : //jsfiddle.net/VpDUG/4952/
実際のロード画像に関しては、このサイトで多数のオプションを確認してください。
リクエストの開始時にこの画像でDIVを表示する限り、いくつかの選択肢があります。
A)画像を手動で表示および非表示にする:
$('#form').submit(function() {
$('#wait').show();
$.post('/whatever.php', function() {
$('#wait').hide();
});
return false;
});
B)ajaxStartとajaxCompleteを使用します:
$('#wait').ajaxStart(function() {
$(this).show();
}).ajaxComplete(function() {
$(this).hide();
});
これを使用すると、要素はすべての要求に対して表示/非表示になります。必要に応じて、良い場合も悪い場合もあります。
C)特定のリクエストに対して個別のコールバックを使用します。
$('#form').submit(function() {
$.ajax({
url: '/whatever.php',
beforeSend: function() { $('#wait').show(); },
complete: function() { $('#wait').hide(); }
});
return false;
});
JonathanとSamirが提案したもの(両方とも素晴らしい答えです!)に加えて、jQueryには、ajaxリクエストを行うときに起動する組み込みイベントがいくつかあります。
ajaxStart
イベントがあります
AJAXリクエストが開始されたとき(そしてまだアクティブになっているものがないとき)は常にロードメッセージを表示します。
...そしてそれは兄弟、ajaxStop
イベントです
すべてのAJAXリクエストが終了したときに実行される関数をアタッチします。これはAjaxイベントです。
一緒に使用すると、ページ上の任意の場所でAjaxアクティビティが発生しているときに、進行状況メッセージを表示するための優れた方法を提供します。
HTML:
<div id="loading">
<p><img src="loading.gif" /> Please Wait</p>
</div>
脚本:
$(document).ajaxStart(function(){
$('#loading').show();
}).ajaxStop(function(){
$('#loading').hide();
});
.ajaxStart
ドキュメントにのみ添付できます。$(document).ajaxStart(function(){}).
Ajaxloadから回転する円のアニメーションGIFを取得できます。これをWebサイトのファイル階層のどこかに貼り付けてください。次に、正しいコードを含むHTML要素を追加し、完了したら削除する必要があります。これはかなり簡単です:
function showLoadingImage() {
$('#yourParentElement').append('<div id="loading-image"><img src="path/to/loading.gif" alt="Loading..." /></div>');
}
function hideLoadingImage() {
$('#loading-image').remove();
}
次に、AJAX呼び出しでこれらのメソッドを使用する必要があります。
$.load(
'http://example.com/myurl',
{ 'random': 'data': 1: 2, 'dwarfs': 7},
function (responseText, textStatus, XMLHttpRequest) {
hideLoadingImage();
}
);
// this will be run immediately after the AJAX call has been made,
// not when it completes.
showLoadingImage();
これにはいくつかの注意点があります。まず、読み込み中の画像を表示できる場所が2つ以上ある場合、一度に何件の通話が実行されているかを追跡し、それらが実行されているときにのみ非表示にする必要があります。全部終わった。これは、ほとんどすべての場合に機能する単純なカウンターを使用して実行できます。
第二に、これは、AJAX呼び出しが成功した場合にのみ、ロードするイメージを非表示にします。エラー状態を処理するには、を検討する必要があります$.ajax
よりも複雑である、$.load
、$.get
等が挙げられるが、多くの柔軟すぎ。
showLoadingImage
開始前とhideLoadingImage
終了後に電話してください。かなり単純なはずです。ただしsetTimeout
、ブラウザが実際に新しい<img>
タグをレンダリングすることを確認するために、なんらかの呼び出しを続ける必要がある場合があります。JavaScriptの実行が完了するまで問題が発生しない場合がいくつかあります。
Jonathonの優れたソリューションはIE8で機能しなくなります(アニメーションはまったく表示されません)。これを修正するには、CSSを次のように変更します。
.modal {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba( 255, 255, 255, .8 )
url('http://i.stack.imgur.com/FhHRx.gif')
50% 50%
no-repeat;
opacity: 0.80;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity = 80);
filter: alpha(opacity = 80)};
jQueryは、AJAXリクエストの開始時と終了時のイベントフックを提供します。これらをフックしてローダーを表示できます。
たとえば、次のdivを作成します。
<div id="spinner">
<img src="images/spinner.gif" alt="Loading" />
</div>
display: none
スタイルシートでに設定します。スタイルは自由に設定できます。必要に応じて、Ajaxload.infoで素敵な読み込み画像を生成できます。
次に、次のようなものを使用して、Ajaxリクエストを送信するときに自動的に表示されるようにすることができます。
$(document).ready(function () {
$('#spinner').bind("ajaxSend", function() {
$(this).show();
}).bind("ajaxComplete", function() {
$(this).hide();
});
});
このJavascriptブロックをページの最後に追加してから、bodyタグを閉じる前、または適切と思われる場所に追加してください。
これで、Ajaxリクエストを送信するたびに、#spinner
divが表示されます。リクエストが完了すると、再び非表示になります。
RailsでTurbolinksを使用している場合、これが私の解決策です。
これはCoffeeScriptです
$(window).on 'page:fetch', ->
$('body').append("<div class='modal'></div>")
$('body').addClass("loading")
$(window).on 'page:change', ->
$('body').removeClass("loading")
これは、Jonathan Sampsonの最初の優れた回答に基づくSASS CSSです。
# loader.css.scss
.modal {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba( 255, 255, 255, 0.4)
asset-url('ajax-loader.gif', image)
50% 50%
no-repeat;
}
body.loading {
overflow: hidden;
}
body.loading .modal {
display: block;
}
マークHのように、blockUIが道です。
例:
<script type="text/javascript" src="javascript/jquery/jquery.blockUI.js"></script>
<script>
// unblock when ajax activity stops
$(document).ajaxStop($.unblockUI);
$("#downloadButton").click(function() {
$("#dialog").dialog({
width:"390px",
modal:true,
buttons: {
"OK, AGUARDO O E-MAIL!": function() {
$.blockUI({ message: '<img src="img/ajax-loader.gif" />' });
send();
}
}
});
});
function send() {
$.ajax({
url: "download-enviar.do",
type: "POST",
blablabla
});
}
</script>
Obs .: http://www.ajaxload.info/で ajax-loader.gifを入手しました
他の投稿をすべて尊重して、CSS3とjQueryを使用して、外部リソースやファイルを使用することなく、非常にシンプルなソリューションを用意しました。
$('#submit').click(function(){
$(this).addClass('button_loader').attr("value","");
window.setTimeout(function(){
$('#submit').removeClass('button_loader').attr("value","\u2713");
$('#submit').prop('disabled', true);
}, 3000);
});
#submit:focus{
outline:none;
outline-offset: none;
}
.button {
display: inline-block;
padding: 6px 12px;
margin: 20px 8px;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
background-image: none;
border: 2px solid transparent;
border-radius: 5px;
color: #000;
background-color: #b2b2b2;
border-color: #969696;
}
.button_loader {
background-color: transparent;
border: 4px solid #f3f3f3;
border-radius: 50%;
border-top: 4px solid #969696;
border-bottom: 4px solid #969696;
width: 35px;
height: 35px;
-webkit-animation: spin 0.8s linear infinite;
animation: spin 0.8s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
99% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
99% { transform: rotate(360deg); }
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input id="submit" class="button" type="submit" value="Submit" />
これによりボタンが非表示になり、「読み込み中」のアニメーションがその場所に表示され、最後に成功メッセージが表示されます。
$(function(){
$('#submit').click(function(){
$('#submit').hide();
$("#form .buttons").append('<img src="assets/img/loading.gif" alt="Loading..." id="loading" />');
$.post("sendmail.php",
{emailFrom: nameVal, subject: subjectVal, message: messageVal},
function(data){
jQuery("#form").slideUp("normal", function() {
$("#form").before('<h1>Success</h1><p>Your email was sent.</p>');
});
}
);
});
});
私が見たほとんどのソリューションは、読み込みオーバーレイをデザインし、それを非表示にして、必要に応じて再表示するか、またはgifや画像などを表示することを期待しています。
堅牢なプラグインを開発したかったので、jQueryを呼び出すだけで、ロード画面を表示し、タスクが完了したらそれを破棄できます。
以下はコードです。Font awesomeとjQueryに依存します。
/**
* Raj: Used basic sources from here: http://jsfiddle.net/eys3d/741/
**/
(function($){
// Retain count concept: http://stackoverflow.com/a/2420247/260665
// Callers should make sure that for every invocation of loadingSpinner method there has to be an equivalent invocation of removeLoadingSpinner
var retainCount = 0;
// http://stackoverflow.com/a/13992290/260665 difference between $.fn.extend and $.extend
$.extend({
loadingSpinner: function() {
// add the overlay with loading image to the page
var over = '<div id="custom-loading-overlay">' +
'<i id="custom-loading" class="fa fa-spinner fa-spin fa-3x fa-fw" style="font-size:48px; color: #470A68;"></i>'+
'</div>';
if (0===retainCount) {
$(over).appendTo('body');
}
retainCount++;
},
removeLoadingSpinner: function() {
retainCount--;
if (retainCount<=0) {
$('#custom-loading-overlay').remove();
retainCount = 0;
}
}
});
}(jQuery));
上記をjsファイルに入れて、プロジェクト全体に含めてください。
CSSの追加:
#custom-loading-overlay {
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: #000;
opacity: 0.8;
filter: alpha(opacity=80);
}
#custom-loading {
width: 50px;
height: 57px;
position: absolute;
top: 50%;
left: 50%;
margin: -28px 0 0 -25px;
}
呼び出し:
$.loadingSpinner();
$.removeLoadingSpinner();
でASP.Net MVCを使用する場合using (Ajax.BeginForm(...
、を設定してajaxStart
も機能しないことに注意してください。
を使用しAjaxOptions
てこの問題を解決します。
(Ajax.BeginForm("ActionName", new AjaxOptions { OnBegin = "uiOfProccessingAjaxAction", OnComplete = "uiOfProccessingAjaxActionComplete" }))
パーhttps://www.w3schools.com/howto/howto_css_loader.asp、これはありませんJSとの2段階のプロセスであります:
1.このHTMLをスピナーを配置する場所に追加します。 <div class="loader"></div>
2.このCSSを追加して実際のスピナーを作成します:
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
$("#loader").toggle();
しているため、アニメーションを開始するために長時間実行されるリクエストを行う前に呼び出すことができ、リクエストのコールバック関数で別の呼び出しを行ってアニメーションを非表示にすることができます。
アニメーションにはCSS3を使用しています
/************ CSS3 *************/
.icon-spin {
font-size: 1.5em;
display: inline-block;
animation: spin1 2s infinite linear;
}
@keyframes spin1{
0%{transform:rotate(0deg)}
100%{transform:rotate(359deg)}
}
/************** CSS3 cross-platform ******************/
.icon-spin-cross-platform {
font-size: 1.5em;
display: inline-block;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin2 2s infinite linear;
}
@keyframes spin2{
0%{transform:rotate(0deg)}
100%{transform:rotate(359deg)}
}
@-moz-keyframes spin2{
0%{-moz-transform:rotate(0deg)}
100%{-moz-transform:rotate(359deg)}
}
@-webkit-keyframes spin2{
0%{-webkit-transform:rotate(0deg)}
100%{-webkit-transform:rotate(359deg)}
}
@-o-keyframes spin2{
0%{-o-transform:rotate(0deg)}
100%{-o-transform:rotate(359deg)}
}
@-ms-keyframes spin2{
0%{-ms-transform:rotate(0deg)}
100%{-ms-transform:rotate(359deg)}
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row">
<div class="col-md-6">
Default CSS3
<span class="glyphicon glyphicon-repeat icon-spin"></span>
</div>
<div class="col-md-6">
Cross-Platform CSS3
<span class="glyphicon glyphicon-repeat icon-spin-cross-platform"></span>
</div>
</div>