mirror of
https://gitee.com/energye/energy.git
synced 2024-12-16 02:11:35 +08:00
42 lines
1.0 KiB
Go
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> |