25 lines
581 B
HTML
25 lines
581 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
|
|
<style>
|
|
html {
|
|
overflow: hidden;
|
|
}
|
|
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
#target {
|
|
transform: translateX(-325px);
|
|
}
|
|
</style>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"
|
|
style="overflow: visible">
|
|
<g id="target">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="10000">
|
|
<rect fill="green" x="0" width="1125" height="400"></rect>
|
|
<rect fill="red" x="1125" width="800" height="400"></rect>
|
|
</svg>
|
|
</g>
|
|
</svg>
|
|
</html>
|