energy/example/zoom/resources/index.html
2023-07-02 15:57:07 +08:00

42 lines
1.0 KiB
Go

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>browser-zoom</title>
<style>
button {
height: 50px;
width: 100px;
margin: 10px;
}
</style>
<script type="application/javascript">
function reset() {
ipc.emit("zoom-reset");
}
function dec() {
ipc.emit("zoom-dec");
}
function inc() {
ipc.emit("zoom-inc");
}
</script>
</head>
<body style="overflow: hidden;margin: 0px;padding: 0px;width: 100%;text-align: center;">
<button onclick="inc()">放大</button>
<button onclick="dec()">缩小</button>
<button onclick="reset()">重置</button>
<div>
文字文字文字文字文字文字文字文字文字文字文字
</div>
<div>
文字文字文字文字文字文字文字文字文字文字文字
</div>
<div>
文字文字文字文字文字文字文字文字文字文字文字
</div>
<div>
文字文字文字文字文字文字文字文字文字文字文字
</div>
</body>
</html>