質問編集履歴

1

javaのインデントを修正しました。

2019/02/14 05:46

投稿

hiroki88
hiroki88

スコア66

test CHANGED
File without changes
test CHANGED
@@ -90,29 +90,29 @@
90
90
 
91
91
  var timer = window.setInterval(function() {
92
92
 
93
- if (count >= 100) {
93
+ if (count >= 100) {
94
94
 
95
- window.clearInterval(timer);
95
+ window.clearInterval(timer);
96
96
 
97
- $('#loader').fadeOut('slow', function() {
97
+ $('#loader').fadeOut('slow', function() {
98
98
 
99
- $('img').fadeIn('slow');
99
+ $('img').fadeIn('slow');
100
100
 
101
- });
101
+ });
102
102
 
103
- } else {
103
+ } else {
104
104
 
105
- if (count <= 100) {
105
+ if (count <= 100) {
106
106
 
107
- count++;
107
+ count++;
108
108
 
109
- $('#load-text').html(count + '%');
109
+ $('#load-text').html(count + '%');
110
110
 
111
- $('#bar span').css('width', count + '%');
111
+ $('#bar span').css('width', count + '%');
112
112
 
113
- }
113
+ }
114
114
 
115
- }
115
+ }
116
116
 
117
117
  },30)
118
118