blob: 95b54368759342f3cf0611d256e06f9534b5562e (
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
26
|
<!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;
transform: translateY(60px);
}
</style>
</head>
<body>
<div id="container">
<div id="target"></div>
</div>
</body>
</html>
|