isReleasing()

更新日: 2019-12-19

item.isReleasing()

アイテムがリリース中(離した状態)かどうかを返します。


パラメータ

無し

戻り値

boolean
アイテムがリリース中かどうかを返します。 trueの場合はリリース中、 falseの場合はリリース中ではありません。

var isReleasing = item.isReleasing();

デモ

アイテムをドラッグしてから離し "isReleasing"ボタンを押すと、console.logを出力します。

アイテム1
JavaScript
var grid = new Muuri('.grid', {
  dragEnabled: true,
  dragReleaseDuration: 3000
});
grid.on('dragReleaseStart', function (item, event) {
  if (item.isReleasing()) {
    console.log('item is releasing');
  }
});
HTML
<button class="is-releasing">isReleasing</button>
<div class="grid">
  <div class="item">
    <div class="item-content">アイテム1</div>
  </div>
</div>
CSS
.grid {
  position: relative;
}

.item {
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  margin: 5px;
  z-index: 1;
  color: #000;
  border: 1px solid #000;
}

.item-content {
  position: relative;
  width: 100%;
  height: 100%;
}


© 2015 Haltu Oy. Licensed under the MIT license

このコンテンツはHaltuによるMuuriドキュメントを翻訳/改変したものです。