1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
| <svg width="300" height="200" xmlns="http://www.w3.org/2000/svg" onclick="explosionAt(evt)">
<!-- 外側ラッパー:上下のゆっくりボビングアニメーション -->
<g id="invaderWrapper" cursor="pointer">
<!-- 内側のインベーダー風エイリアン(ピクセルアート) -->
<g id="invader">
<!-- Row0: パターン [0,1,1,0,0,1,1,0] -->
<rect x="30" y="20" width="10" height="10" fill="lime" />
<rect x="40" y="20" width="10" height="10" fill="lime" />
<rect x="70" y="20" width="10" height="10" fill="lime" />
<rect x="80" y="20" width="10" height="10" fill="lime" />
<!-- Row1: パターン [1,0,0,1,1,0,0,1] -->
<rect x="20" y="30" width="10" height="10" fill="lime" />
<rect x="50" y="30" width="10" height="10" fill="lime" />
<rect x="60" y="30" width="10" height="10" fill="lime" />
<rect x="90" y="30" width="10" height="10" fill="lime" />
<!-- Row2: パターン [1,1,1,1,1,1,1,1] -->
<rect x="20" y="40" width="10" height="10" fill="lime" />
<rect x="30" y="40" width="10" height="10" fill="lime" />
<rect x="40" y="40" width="10" height="10" fill="lime" />
<rect x="50" y="40" width="10" height="10" fill="lime" />
<rect x="60" y="40" width="10" height="10" fill="lime" />
<rect x="70" y="40" width="10" height="10" fill="lime" />
<rect x="80" y="40" width="10" height="10" fill="lime" />
<rect x="90" y="40" width="10" height="10" fill="lime" />
<!-- Row3: パターン [1,0,1,1,1,1,0,1] -->
<rect x="20" y="50" width="10" height="10" fill="lime" />
<rect x="40" y="50" width="10" height="10" fill="lime" />
<rect x="50" y="50" width="10" height="10" fill="lime" />
<rect x="60" y="50" width="10" height="10" fill="lime" />
<rect x="70" y="50" width="10" height="10" fill="lime" />
<rect x="90" y="50" width="10" height="10" fill="lime" />
<!-- Row4: パターン [1,0,1,1,1,1,0,1] -->
<rect x="20" y="60" width="10" height="10" fill="lime" />
<rect x="40" y="60" width="10" height="10" fill="lime" />
<rect x="50" y="60" width="10" height="10" fill="lime" />
<rect x="60" y="60" width="10" height="10" fill="lime" />
<rect x="70" y="60" width="10" height="10" fill="lime" />
<rect x="90" y="60" width="10" height="10" fill="lime" />
<!-- Row5: パターン [1,1,1,1,1,1,1,1] -->
<rect x="20" y="70" width="10" height="10" fill="lime" />
<rect x="30" y="70" width="10" height="10" fill="lime" />
<rect x="40" y="70" width="10" height="10" fill="lime" />
<rect x="50" y="70" width="10" height="10" fill="lime" />
<rect x="60" y="70" width="10" height="10" fill="lime" />
<rect x="70" y="70" width="10" height="10" fill="lime" />
<rect x="80" y="70" width="10" height="10" fill="lime" />
<rect x="90" y="70" width="10" height="10" fill="lime" />
<!-- Row6: パターン [0,1,0,1,1,0,1,0] -->
<rect x="30" y="80" width="10" height="10" fill="lime" />
<rect x="50" y="80" width="10" height="10" fill="lime" />
<rect x="60" y="80" width="10" height="10" fill="lime" />
<rect x="80" y="80" width="10" height="10" fill="lime" />
<!-- Row7: パターン [0,0,1,0,0,1,0,0] -->
<rect x="40" y="90" width="10" height="10" fill="lime" />
<rect x="70" y="90" width="10" height="10" fill="lime" />
</g>
<!-- 横方向移動アニメーション:画面いっぱいに動く -->
<animateTransform
xlink:href="#invader"
attributeName="transform"
type="translate"
values="0,0;200,0;0,0"
dur="2s"
repeatCount="indefinite" />
</g>
<!-- 垂直ボビング(上下動)アニメーション:durを3秒に変更 -->
<animateTransform
xlink:href="#invaderWrapper"
attributeName="transform"
type="translate"
values="0,0;0,50;0,0"
dur="3s"
repeatCount="indefinite" />
<!-- 爆発エフェクト(各アニメーションのbeginをindefiniteに変更) -->
<g id="explosion" opacity="0">
<circle cx="0" cy="0" r="2" fill="orange">
<animateTransform attributeName="transform" type="translate" values="0,0; -20,-20" dur="0.6s" begin="indefinite" fill="freeze" />
<animate attributeName="opacity" values="1;0" dur="0.6s" begin="indefinite" fill="freeze" />
</circle>
<circle cx="0" cy="0" r="2" fill="orange">
<animateTransform attributeName="transform" type="translate" values="0,0; 20,-20" dur="0.6s" begin="indefinite" fill="freeze" />
<animate attributeName="opacity" values="1;0" dur="0.6s" begin="indefinite" fill="freeze" />
</circle>
<circle cx="0" cy="0" r="2" fill="orange">
<animateTransform attributeName="transform" type="translate" values="0,0; -20,20" dur="0.6s" begin="indefinite" fill="freeze" />
<animate attributeName="opacity" values="1;0" dur="0.6s" begin="indefinite" fill="freeze" />
</circle>
<circle cx="0" cy="0" r="2" fill="orange">
<animateTransform attributeName="transform" type="translate" values="0,0; 20,20" dur="0.6s" begin="indefinite" fill="freeze" />
<animate attributeName="opacity" values="1;0" dur="0.6s" begin="indefinite" fill="freeze" />
</circle>
<circle cx="0" cy="0" r="2" fill="orange">
<animateTransform attributeName="transform" type="translate" values="0,0; 0,-30" dur="0.6s" begin="indefinite" fill="freeze" />
<animate attributeName="opacity" values="1;0" dur="0.6s" begin="indefinite" fill="freeze" />
</circle>
<circle cx="0" cy="0" r="2" fill="orange">
<animateTransform attributeName="transform" type="translate" values="0,0; 0,30" dur="0.6s" begin="indefinite" fill="freeze" />
<animate attributeName="opacity" values="1;0" dur="0.6s" begin="indefinite" fill="freeze" />
</circle>
<circle cx="0" cy="0" r="2" fill="orange">
<animateTransform attributeName="transform" type="translate" values="0,0; -30,0" dur="0.6s" begin="indefinite" fill="freeze" />
<animate attributeName="opacity" values="1;0" dur="0.6s" begin="indefinite" fill="freeze" />
</circle>
<circle cx="0" cy="0" r="2" fill="orange">
<animateTransform attributeName="transform" type="translate" values="0,0; 30,0" dur="0.6s" begin="indefinite" fill="freeze" />
<animate attributeName="opacity" values="1;0" dur="0.6s" begin="indefinite" fill="freeze" />
</circle>
</g>
<!-- クリック時にエイリアンを非表示&爆発エフェクトを表示 -->
<set xlink:href="#invader" attributeName="opacity" to="0" begin="invaderWrapper.click" />
<set xlink:href="#explosion" attributeName="opacity" to="1" begin="invaderWrapper.click" />
<!-- 3秒後にエイリアンを復帰し、爆発エフェクトを非表示に -->
<set xlink:href="#invader" attributeName="opacity" to="1" begin="invaderWrapper.click+3s" />
<set xlink:href="#explosion" attributeName="opacity" to="0" begin="invaderWrapper.click+3s" />
<script type="application/ecmascript"><![CDATA[
function explosionAt(evt) {
// SVG要素の取得
var svg = evt.currentTarget;
// クリック位置をSVG座標に変換
var pt = svg.createSVGPoint();
pt.x = evt.clientX;
pt.y = evt.clientY;
var svgP = pt.matrixTransform(svg.getScreenCTM().inverse());
// 爆発エフェクトの位置をクリック位置に設定
var explosion = document.getElementById("explosion");
explosion.setAttribute("transform", "translate(" + svgP.x + "," + svgP.y + ")");
explosion.setAttribute("opacity", "1");
// 爆発エフェクト内の各アニメーションを開始
var animations = explosion.querySelectorAll("animate, animateTransform");
for (var i = 0; i < animations.length; i++) {
animations[i].beginElement();
}
// インベーダーを非表示にする
var invader = document.getElementById("invader");
invader.setAttribute("opacity", "0");
// 3秒後にインベーダーを復帰し、爆発エフェクトを非表示にする
setTimeout(function(){
invader.setAttribute("opacity", "1");
explosion.setAttribute("opacity", "0");
}, 3000);
}
]]></script>
</svg>
|