blob: 2c3720c44ce8fe305ad384167daf1de163b3301f (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Motion Path: ray paths</title>
<style>
#container {
width: 200px;
height: 200px;
}
#target {
position: relative;
left: 130%;
top: 60%;
width: 40px;
height: 40px;
background-color: lime;
}
</style>
</head>
<body>
<div id="container">
<div id="target"></div>
</div>
</body>
</html>
|