をクリックして、私はボタンの後にjQueryの機能で「ロード」のアニメーションを追加する必要があるので、アドオン「ロード」のアニメーションボタンの後
をクリックして、私は次の機能があります。
function get_revpopup_cart(product_id, action, quantity) {
quantity = typeof(quantity) != 'undefined' ? quantity : 1;
if (action == "catalog") {
$.ajax({
url: 'index.php?route=checkout/cart/add',
type: 'post',
data: 'product_id=' + product_id + '&quantity=' + quantity,
dataType: 'json',
beforeSend: function(){
$('body').addClass('blur2');
$('#pagefader2').fadeIn(70);
},
.............
と、このアニメーション: <div class="page_gif_progress_icon"><div class="circle"></div></div>
ボタン:<a onclick="get_revpopup_cart('103', 'catalog', '1');" data-toggle="tooltip" title="В корзину"><i class="fa fa-border fa-shopping-basket"><span class="prlistb">add in cart</span></i>
私はOPEだろう「ロード」アニメーションbefore $('body').addClass('blur2');
を追加する必要がありますNアップ機能が
おかげ
あなたはまったく同じことをしましたが、読み込み要素の変数を作成しました。たぶん私はそれを宣言するときにいくつかのタイプミスをしました。それでもあなたがそれを解決してうれしいです。 –