VẼ PHI THUYỀN VÀ VIẾT
CODES NHƯ SAU, SẼ NHÌN THẤY PHI THUYỀN BAY TỚI GẶP SAO HỎA.
Thông minh ai khéo bày
ra.Thực hành sẽ thấy dứt ngay nảo phiền.
hdg
-------------------
<html><body>
<p><center><span
style="color:purple;font-size:25">DRAWING A SATELLITE ANIMATION TO
MARS BY SVG AND SMIL</span></center></p>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="100%"
height="100%">
<g
transform="translate(-48,-10)"> // Vẽ quỷ đạo địa cầu màu xanh
<circle cx="300"
cy="250" r="42" stroke="blue"
fill="none"/>
</g>
<g> // Vẽ quy đaọ sao hỏa màu đỏ
<path id="saohoa"
d="M 300,250
a 100 105 0 1,0 0, 0.0025Z" stroke="red"
fill="none"/>
</g>
<g
transform="translate(-48,-52)">
<circle cx="20"
cy="50" r="15" stroke="black"
fill="red"/>//vẽ sao hỏa và cho
sao hỏa chuyển động
<animateMotion
dur="10" rotate="auto"
repeatCount="indefinite">
<mpath xlink:href="#saohoa"/>
</animateMotion>
</g>
<g> // Vẽ quỷ đạo Hohmann transfer orbit màu lả cây
<path
id="transfer"
d="M 300,250
a 99 70 10 1,0 0, 0.0025Z" stroke="green"
fill="none"/>
</g>
<g
transform="translate(-20,-25)"> //Đem
hình vẽ spaceship trong document vào đây.
<image xlink:href="satellite henry.gif" x ="-60"
y="-20" width="40" height="50"/>
<animateMotion
begin="2" rotate="auto" dur="5"
repeatCount="indefinite">//cho
spaceship chuyển động
<mpath xlink:href="#transfer"/>
</animateMotion >
</g>
</svg></body></html>