Files
QuickLook/QuickLook.Plugin/QuickLook.Plugin.ImageViewer/Resources/svg2html.html
ema 682801a8bb
Some checks are pending
MSBuild / build (push) Waiting to run
MSBuild / publish (push) Blocked by required conditions
Refactor SVG viewer to use inline SVG
2025-07-01 01:57:36 +08:00

30 lines
588 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>SVG Preview</title>
<style>
html, body {
margin: 0;
height: 100%;
overflow: hidden;
}
#svgContainer {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
user-select: none;
}
</style>
</head>
<body>
<div id="svgContainer">
<div id="svgWrapper"></div>
</div>
<script src="svg2html.js"></script>
</body>
</html>