|
@@ -98,7 +98,7 @@
|
|
</div>
|
|
</div>
|
|
<link href="/static/css/lockScreen.css" rel="stylesheet">
|
|
<link href="/static/css/lockScreen.css" rel="stylesheet">
|
|
<script src="/static/js/jquery.min.js?v=2.1.4"></script>
|
|
<script src="/static/js/jquery.min.js?v=2.1.4"></script>
|
|
-<script src="/static/js/common/Feng.js"></script>
|
|
|
|
|
|
+<script src="/static/js/common/Feng.js?v=20250103"></script>
|
|
<style type="text/css">
|
|
<style type="text/css">
|
|
.dbsx{
|
|
.dbsx{
|
|
line-height: 12px;
|
|
line-height: 12px;
|
|
@@ -232,12 +232,12 @@
|
|
}
|
|
}
|
|
function listenTime() {
|
|
function listenTime() {
|
|
var body = document.querySelector('html');
|
|
var body = document.querySelector('html');
|
|
- body.addEventListener("click", restTime);
|
|
|
|
- body.addEventListener("keyup", restTime);
|
|
|
|
- body.addEventListener("keypress", restTime);
|
|
|
|
- body.addEventListener("keydown", restTime);
|
|
|
|
- body.addEventListener("mousemove", restTime);
|
|
|
|
- body.addEventListener("mousewheel", restTime);
|
|
|
|
|
|
+ Feng.addEvent(body, "click", restTime);
|
|
|
|
+ Feng.addEvent(body, "keyup", restTime);
|
|
|
|
+ Feng.addEvent(body, "keypress", restTime);
|
|
|
|
+ Feng.addEvent(body, "keydown", restTime);
|
|
|
|
+ Feng.addEvent(body, "mousemove", restTime);
|
|
|
|
+ Feng.addEvent(body, "mousewheel", restTime);
|
|
}
|
|
}
|
|
function restTime() {
|
|
function restTime() {
|
|
if (task != null) {
|
|
if (task != null) {
|