no commit message

This commit is contained in:
雨中磐石
2024-10-18 15:27:40 +08:00
parent 9a2a3a2c8a
commit 559c388ea0
103 changed files with 2021 additions and 783 deletions

View File

@@ -8,7 +8,7 @@
<style>
body,html{padding:0px;margin:0px;font-size:14px}
.close{height:20px;width:20px;display:block;text-align:center;line-height:18px;cursor:pointer;font-size:16px}
.close:hover{background:#ff1118;color:white}
.close:hover{background:#ff1118;color:white;border-radius:10px}
table {
border-spacing: 0;
border-collapse: collapse;
@@ -17,7 +17,7 @@ table {
<script>
$(document).ready(function(){
winobj = nw.Window.get();
winobj.moveTo(screen.width-355,screen.height-170);
winobj.moveTo(screen.width-360,screen.height-150);
winobj.show();
var nr = localStorage.getItem('xinhuoa_notification');
if(nr){
@@ -39,25 +39,28 @@ function clickbody(){
}
</script>
</head>
<body style="overflow:hidden;cursor:pointer" >
<div style="position:absolute;right:2px;top:2px;-webkit-app-region:no-drag;z-index:5">
<span onclick="winclose();" title="关闭" class="close">×</span>
</div>
<div style="height:10px"></div>
<table border="0" style="margin:0px 8px" onclick="clickbody()">
<tr valign="top">
<td>
<div style="width:80px;height:80px;overflow:hidden;margin:5px" align="center">
<img src="../../../images/logo.png" id="logodiv" height="80px" width="80px">
</div>
</td>
<td style="padding-left:5px">
<div id="titlediv" style="font-size:16px;font-size:bold;line-height:20px;height:20px;overflow:hidden;margin-top:12px"></div>
<div id="messdiv" style="font-size:14px;color:gray;line-height:20px;height:40px;overflow:hidden;margin-top:8px"></div>
</td>
</tr>
</table>
<body style="overflow:hidden;cursor:pointer; " >
<div style="border-radius:10px;background:white;border:rgba(0,0,0,0.1) 0.5px solid;margin:1px;box-shadow:0px 5px 10px 1px rgba(0,0,0,0.05);margin:5px">
<div style="padding:8px">
<div style="position:absolute;right:8px;top:7px;-webkit-app-region:no-drag;z-index:5">
<span onclick="winclose();" class="close">×</span>
</div>
<table border="0" width="100%" onclick="clickbody()">
<tr valign="top">
<td width="60px">
<div style="width:70px;height:70px;overflow:hidden;margin:5px" align="center">
<img src="../../../images/logo.png" style="border-radius:10px;" id="logodiv" height="70px" width="70px">
</div>
</td>
<td style="padding-left:5px" align="left">
<div id="titlediv" style="font-size:16px;font-size:bold;line-height:20px;height:20px;overflow:hidden;margin-top:10px"></div>
<div id="messdiv" style="font-size:14px;color:gray;line-height:18px;height:40px;overflow:hidden;margin-top:5px"></div>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>