blob: 3ad660eb2f2a2114d99a6d91a7a57146f6fece44 (
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
27
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Motion Path: ray paths with contain</title>
<style>
#container {
width: 300px;
height: 300px;
}
#target {
position: relative;
left: 100px;
top: 100px;
width: 100px;
height: 100px;
background-color: lime;
/* The movement is about 150 - 50 * sqrt(2) */
transform: rotate(-45deg) translate(79.29px) rotate(45deg);
}
</style>
</head>
<body>
<div id="container">
<div id="target"></div>
</div>
</body>
</html>
|