18 lines
372 B
HTML
18 lines
372 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Motion Path Referecne: url() to non SVG elements</title>
|
|
<style>
|
|
#target {
|
|
width: 50px;
|
|
height: 50px;
|
|
background-color: green;
|
|
transform: translate(25px, 25px);
|
|
border-radius: 50% 50% 0 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="target"></div>
|
|
</body>
|
|
</html>
|