20 lines
288 B
HTML
20 lines
288 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
#scroller {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
#target {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
rotate: 45deg;
|
|
translate: 50px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="scroller"></div>
|
|
<div id="target"></div>
|
|
</body>
|
|
</html>
|