質問編集履歴

1

cssの記述を追加

2016/01/23 07:00

投稿

Taichi_S
Taichi_S

スコア17

test CHANGED
File without changes
test CHANGED
@@ -10,13 +10,49 @@
10
10
 
11
11
  index.html
12
12
 
13
+ -----------------------------------------------------------------
14
+
15
+
16
+
13
17
  <div class="animation"><img src="img/test_pht.jpg" alt=""></div>
18
+
19
+
20
+
21
+ -----------------------------------------------------------------
22
+
23
+
24
+
25
+
26
+
27
+ index.css
28
+
29
+ -----------------------------------------------------------------
30
+
31
+
32
+
33
+ .animation {
34
+
35
+ position: absolute;
36
+
37
+ top: 50%;
38
+
39
+ left: 50%;
40
+
41
+ }
42
+
43
+
44
+
45
+ -----------------------------------------------------------------
14
46
 
15
47
 
16
48
 
17
49
 
18
50
 
19
51
  index.js
52
+
53
+ -----------------------------------------------------------------
54
+
55
+
20
56
 
21
57
  $('.animation').css('visibility','hidden');
22
58
 
@@ -39,3 +75,7 @@
39
75
  });
40
76
 
41
77
  });
78
+
79
+
80
+
81
+ -----------------------------------------------------------------