片方の丸が別の丸を追いかけるアニメーションのコード(再実行可能)
赤丸の速度 (秒): 青丸の速度 (秒): 更新 オリジナル: 赤丸を青丸が追いかけるアニメーションのコード(正式) <!DOCTYPE html> <html lang="ja"> <head> <title></title> <style> #container { position: relative; height: 300px; width: 300px; border: 1px solid black; } #circle { position: absolute; height: 20px; /* 赤丸のサイズ */ width: 20px; /* 赤丸のサイズ */ background-color: red; border-radius: 50%; transition: top 0.5s, left 0.5s; /* 赤丸の速度 */ z-index: 1; /* 赤丸を前面に表示 */ } #circle2 { position: absolute; height: 20px; /* 青丸のサイズ */ width: 20px; /* 青丸のサイズ */ background-color: blue; border-radius: 50%; transition: top 2s, left 2s; /* 青丸の速度 */ z-index: 2; /* 青丸を前面に表示 */ } #line { position: absolute; height: 40px; width: 1px; /* 縦線の幅 */ background-color