##### [source : https://jsfiddle.net/softm/a39qnxdc/](https://jsfiddle.net/softm/a39qnxdc/)
##### # show Loading image
```javascript
function showLoading() {
// if(isBrowser) {
$('.softm-ui-layer.progress').show();
// } else {
// if ( typeof(Android) !== "undefined") {
// Android.showLoading();
// }
// }
}
function hideLoading() {
window.setTimeout(function() {
// if(isBrowser) {
$('.softm-ui-layer.progress').hide();
// } else {
// if ( typeof(Android) !== "undefined") {
// Android.hideLoading();
// }
// }
}, 100);
}
$("body").on("click", ".loading", function() {
console.log($(this).val());
showLoading();
setTimeout(function() {
hideLoading();
}, 500);
});
```
##### # html
```html
```
'web > javascript' 카테고리의 다른 글
simple padding zero (0) | 2020.02.27 |
---|---|
Javascript SnakBar (0) | 2019.08.06 |
레이어 중앙 위치 (0) | 2019.08.01 |
ECMA6 (0) | 2019.07.27 |
date time random (0) | 2019.07.26 |
댓글