Last active
December 15, 2015 03:19
-
-
Save yusugomori/5193623 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var path = '/path/to/img/0.png'; // プリロードさせたい画像のパス | |
| var dfd = preload(path); | |
| dfd.then(function(){ | |
| /* 画像読み込み完了後の処理 */ | |
| }).fail(function(){ | |
| /* 画像読み込み失敗時の処理 */ | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment