mirror of
https://github.com/GMYXDS/jumpvideo-electron.git
synced 2026-02-21 16:47:23 +08:00
32 lines
773 B
HTML
32 lines
773 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Notification</title>
|
|
<link href="notification.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
<body>
|
|
<audio id="beep" src="new_msg_come.wav" preload="auto"></audio>
|
|
<div class="container">
|
|
<div id="notification">
|
|
<div class="icon">
|
|
<img id="icon" >
|
|
</div>
|
|
|
|
<div class="message">
|
|
<h2 id="title"></h2>
|
|
<p id="message"></p>
|
|
</div>
|
|
|
|
<div class="close-btn">
|
|
<img id="close-icon" src="btn-close.png" width="16" height="16">
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div id="buttons">aaa</div>
|
|
<script src="app.js" type="module"></script>
|
|
</body>
|
|
</html>
|