ロード状態のときにボタンにスピナーアイコンを追加するにはどうすればよいですか?


190

Twitter Bootstrapのボタンには素晴らしいLoading...状態があります。

問題は、次のような属性Loading...を介して渡されたようなメッセージを表示することdata-loading-textです。

<button type="button" class="btn btn-primary start" id="btnStartUploads"
        data-loading-text="@Localization.Uploading">
    <i class="icon-upload icon-large"></i>
    <span>@Localization.StartUpload</span>
</button>

Font Awesomeを見ると、アニメーション化されたスピナーアイコンがあることがわかります

次のUploadような操作を実行するときに、そのスピナーアイコンを統合しようとしました。

$("#btnStartUploads").button('loading');
$("#btnStartUploads i").removeAttr('class');
$("#btnStartUploads i").addClass('icon-spinner icon-spin icon-large');

しかし、これはまったく効果がありませんでしたUploading...。つまり、ボタンのテキストが表示されるだけです。

ボタンが読み込み状態のときにアイコンを追加することはできますか?なんとなく、Bootstrap <i class="icon-upload icon-large"></i>はLoading状態のときにボタン内のアイコンを削除するだけのようです。


これは、上記で説明した動作を示す簡単なデモです。読み込み状態になると、アイコンが消えます。時間間隔の直後に再表示されます。


1
あなたは、アニメーションのスピナー外観に私の解決策をチェックアウトすることができます:stackoverflow.com/questions/15982233/...
アンドリューDryga

私は、このアプローチを使用することをお勧めしますstackoverflow.com/a/15988830/437690
limitium

回答:


101

あなたが見れば、ブートストラップ・button.jsソース、ブートストラッププラグインがボタンにあるもので、内側のhtml置き換えることがわかります、データ・ロード・テキスト呼び出すときに$(myElem).button('loading')

あなたの場合、私あなたがこれを行うことができるべきだと思います:

<button type="button"
        class="btn btn-primary start"
        id="btnStartUploads"
        data-loading-text="<i class='icon-spinner icon-spin icon-large'></i> @Localization.Uploading">
    <i class="icon-upload icon-large"></i>
    <span>@Localization.StartUpload</span>
</button>

1
素晴らしいgurch101の作品!HTMLタグのプロパティでテキストと混在できることを忘れています。:-)
Leniel Maccaferri 2013

11
フィドルは、Safariの6.0.5(7536.30.1)のためのMac OS X上でのクロム31.0.1604.0カナリア働いていない
ブラク・エルデム

16
修正済み:jsfiddle.net/6U5q2/270これはv2.3.2用です。3.xで機能するかどうかわからない
Eric Freese、2013

13
data-loading-textはv3.3.5から廃止され、v4で削除されます。
ジョナサン

2
@Jonathan v3.3.5で非推奨になった場合、v3.3.5とv4以降のどちらでそれを置き換えるのですか?
PaladiN 2017年

323

CSS3アニメーションを使用したBootstrap 3のシンプルなソリューション。

CSSに以下を追加します。

.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

次に、読み込み中にspinningクラスを追加してglyphicon、回転するアイコンを取得します。

<button class="btn btn-lg btn-warning">
    <span class="glyphicon glyphicon-refresh spinning"></span> Loading...    
</button>

http://www.bootply.com/128062#に基づく

  • 注:IE9以前はCSS3アニメーションをサポートしていません。

4
それはそうではanimationありません-animationか?
Andrey Mikhaylov-lolmaus

3
優れたソリューション。デスクトップとiPadのSafariでこれをアニメーション化すると問題が発生します。アイコンは表示されますが、アニメーションはされません。そのようなことを経験したことがありますか?
JayhawksFan93 2015年

@ JayhawksFan93はい私は最近IEで同じことに気づきました。間もなく調査します
Flion

2
答えはのanimation代わりにに更新されました -animation。その変更により、FFとIEでうまくいきました。ただし、Firefoxのアニメーションは滑らかではありません。
Flion、2015

1
+1。ここで同様のものを見つけました....記録のための投稿...
Fr0zenFyr

66

そのための本格的なプラグインがあります:

http://msurguy.github.io/ladda-bootstrap/


1
@Eru Penkman様、こんにちは。あなたとオリジナルの違いは何ですか?
Ivan Wang

ちょっとイヴァン、並べ替えるが、私は自分のladdaを更新することはできませんでした!それはただのオリジナルなので、以前のコメントを削除しました。申し訳ありません!
roo2 2014年

13

@flionによるソリューションを非常に見栄えよくするために、そのアイコンの中心点を調整して上下に揺れないようにすることができます。これは、小さなフォントサイズで私にぴったりです。

.glyphicon-refresh.spinning {
  transform-origin: 48% 50%;
}

1
.glyphicon-refresh.spinning { transform-origin: 50% 58%; }私のために働きました
幸運な人

ハム、代わりに{ transform-origin: 50% 49%; }使用している私の場合を解決しcogます。
Vitor Canova 2016年

ぐらつきにも気づきましたが、これらの数値を変更する根拠は何ですか?それらをどのように調整すればよいですか?
elachell 2018年

2

これがBootstrap 4の私の解決策です:

<button id="search" class="btn btn-primary" 
data-loading-text="<i class='fa fa-spinner fa-spin fa-fw' aria-hidden='true'></i>Searching">
  Search
</button>

var setLoading = function () {
  var search = $('#search');
  if (!search.data('normal-text')) {
    search.data('normal-text', search.html());
  }
  search.html(search.data('loading-text'));
};

var clearLoading = function () {
  var search = $('#search');
  search.html(search.data('normal-text'));
};

setInterval(() => {
  setLoading();
  setTimeout(() => {
    clearLoading();
  }, 1000);
}, 2000);

JSFiddleで確認してください。


2

これらは、純粋なSVGおよびCSSアニメーションに基づいたものです。下のスニペットのJSコードに注意を払わないでください。これは、デモ用です。カスタムのものを私のものにすることを自由に感じてください、それは超簡単です。

var svg = d3.select("svg"),
    columnsCount = 3;

['basic', 'basic2', 'basic3', 'basic4', 'loading', 'loading2', 'spin', 'chrome', 'chrome2', 'flower', 'flower2', 'backstreet_boys'].forEach(function(animation, i){
  var x = (i%columnsCount+1) * 200-100,
      y = 20 + (Math.floor(i/columnsCount) * 200);
  
  
  svg.append("text")
    .attr('text-anchor', 'middle')
    .attr("x", x)
    .attr("y", y)
    .text((i+1)+". "+animation);
  
  svg.append("circle")
    .attr("class", animation)
    .attr("cx",  x)
    .attr("cy",  y+40)
    .attr("r",  16)
});
circle {
  fill: none;
  stroke: #bbb;
  stroke-width: 4
}

.basic {
  animation: basic 0.5s linear infinite;
  stroke-dasharray: 20 80;
}

@keyframes basic {
  0%    {stroke-dashoffset: 100;}
  100%  {stroke-dashoffset: 0;}
}

.basic2 {
  animation: basic2 0.5s linear infinite;
  stroke-dasharray: 80 20;
}

@keyframes basic2 {
  0%    {stroke-dashoffset: 100;}
  100%  {stroke-dashoffset: 0;}
}

.basic3 {
  animation: basic3 0.5s linear infinite;
  stroke-dasharray: 20 30;
}

@keyframes basic3 {
  0%    {stroke-dashoffset: 100;}
  100%  {stroke-dashoffset: 0;}
}

.basic4 {
  animation: basic4 0.5s linear infinite;
  stroke-dasharray: 10 23.3;
}

@keyframes basic4 {
  0%    {stroke-dashoffset: 100;}
  100%  {stroke-dashoffset: 0;}
}

.loading {
  animation: loading 1s linear infinite;
  stroke-dashoffset: 25;
}

@keyframes loading {
  0%    {stroke-dashoffset: 0;    stroke-dasharray: 50 0; }
  50%   {stroke-dashoffset: -100; stroke-dasharray: 0 50;}
  100%  { stroke-dashoffset: -200;stroke-dasharray: 50 0;}
}

.loading2 {
  animation: loading2 1s linear infinite;
}

@keyframes loading2 {
  0% {stroke-dasharray: 5 28.3;   stroke-dashoffset: 75;}
  50% {stroke-dasharray: 45 5;    stroke-dashoffset: -50;}
  100% {stroke-dasharray: 5 28.3; stroke-dashoffset: -125; }
}

.spin {
  animation: spin 1s linear infinite;
  stroke-dashoffset: 25;
}

@keyframes spin {
  0%    {stroke-dashoffset: 0;    stroke-dasharray: 33.3 0; }
  50%   {stroke-dashoffset: -100; stroke-dasharray: 0 33.3;}
  100%  { stroke-dashoffset: -200;stroke-dasharray: 33.3 0;}
}

.chrome {
  animation: chrome 2s linear infinite;
}

@keyframes chrome {
  0%    {stroke-dasharray: 0 100; stroke-dashoffset: 25;}
  25%   {stroke-dasharray: 75 25; stroke-dashoffset: 0;}
  50%   {stroke-dasharray: 0 100;  stroke-dashoffset: -125;}
  75%    {stroke-dasharray: 75 25; stroke-dashoffset: -150;}
  100%   {stroke-dasharray: 0 100; stroke-dashoffset: -275;}
}

.chrome2 {
  animation: chrome2 1s linear infinite;
}

@keyframes chrome2 {
  0%    {stroke-dasharray: 0 100; stroke-dashoffset: 25;}
  25%   {stroke-dasharray: 50 50; stroke-dashoffset: 0;}
  50%   {stroke-dasharray: 0 100;  stroke-dashoffset: -50;}
  75%   {stroke-dasharray: 50 50;  stroke-dashoffset: -125;}
  100%  {stroke-dasharray: 0 100;  stroke-dashoffset: -175;}
}

.flower {
  animation: flower 1s linear infinite;
}

@keyframes flower {
  0%    {stroke-dasharray: 0  20; stroke-dashoffset: 25;}
  50%   {stroke-dasharray: 20 0;  stroke-dashoffset: -50;}
  100%  {stroke-dasharray: 0 20;  stroke-dashoffset: -125;}
}

.flower2 {
  animation: flower2 1s linear infinite;
}

@keyframes flower2 {
  0%    {stroke-dasharray: 5 20;  stroke-dashoffset: 25;}
  50%   {stroke-dasharray: 20 5;  stroke-dashoffset: -50;}
  100%  {stroke-dasharray: 5 20;  stroke-dashoffset: -125;}
}

.backstreet_boys {
  animation: backstreet_boys 3s linear infinite;
}

@keyframes backstreet_boys {
  0%    {stroke-dasharray: 5 28.3;  stroke-dashoffset: -225;}
  15%    {stroke-dasharray: 5 28.3;  stroke-dashoffset: -300;}
  30%   {stroke-dasharray: 5 20;  stroke-dashoffset: -300;}
  45%    {stroke-dasharray: 5 20;  stroke-dashoffset: -375;}
  60%   {stroke-dasharray: 5 15;  stroke-dashoffset: -375;}
  75%    {stroke-dasharray: 5 15;  stroke-dashoffset: -450;}
  90%   {stroke-dasharray: 5 15;  stroke-dashoffset: -525;}
  100%   {stroke-dasharray: 5 28.3;  stroke-dashoffset: -925;}
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.13.0/d3.min.js"></script>
<svg width="600px" height="700px"></svg>

CodePenでも利用可能:https ://codepen.io/anon/pen/PeRazr


1

これは、ブルマに触発された本格的なcssソリューションです。追加するだけ

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      min-width: 200px;
      max-width: 100%;
      min-height: 40px;
      text-align: center;
      cursor: pointer;
    }

    @-webkit-keyframes spinAround {
      from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
      }
      to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
      }
    }
    @keyframes spinAround {
      from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
      }
      to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
      }
    }

    .button.is-loading {
      text-indent: -9999px;
      box-shadow: none;
      font-size: 1rem;
      height: 2.25em;
      line-height: 1.5;
      vertical-align: top;
      padding-bottom: calc(0.375em - 1px);
      padding-left: 0.75em;
      padding-right: 0.75em;
      padding-top: calc(0.375em - 1px);
      white-space: nowrap;
    }

    .button.is-loading::after  {
      -webkit-animation: spinAround 500ms infinite linear;
      animation: spinAround 500ms infinite linear;
      border: 2px solid #dbdbdb;
      border-radius: 290486px;
      border-right-color: transparent;
      border-top-color: transparent;
      content: "";
      display: block;
      height: 1em;
      position: relative;
      width: 1em;
    }
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.