From 463f412c759cded5f71b3ec4c326953f19034069 Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Mon, 15 Jul 2024 15:42:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/static/html/ie.html | 4 +- .../main/resources/templates/home/base.html | 86 +++++++++++++++++++ .../main/resources/templates/home_footer.html | 2 +- 3 files changed, 89 insertions(+), 3 deletions(-) diff --git a/ruoyi-admin/src/main/resources/static/html/ie.html b/ruoyi-admin/src/main/resources/static/html/ie.html index 166c60a..9cfba2f 100644 --- a/ruoyi-admin/src/main/resources/static/html/ie.html +++ b/ruoyi-admin/src/main/resources/static/html/ie.html @@ -10,7 +10,7 @@ @@ -579,6 +623,12 @@
+
@@ -1042,6 +1092,42 @@ $('.myscroll').myScroll({ speed: 30, }); + + let el = document.querySelector('#ad'); + let styleTop = 0; + let styleLeft = 0; + let verticalFlag = true; + let horizontalFlag = true; + let isMouseOver = false; // 新变量用于跟踪鼠标是否在元素上 + + // 设置定时器的函数 + function moveElement() { + if (!isMouseOver) { // 如果鼠标不在元素上,则继续移动 + verticalFlag ? styleTop++ : styleTop--; + horizontalFlag ? styleLeft++ : styleLeft--; + + (styleTop <= 0 || styleTop >= window.innerHeight - el.offsetHeight) && (verticalFlag = !verticalFlag); + (styleLeft <= 0 || styleLeft >= window.innerWidth - el.offsetWidth) && (horizontalFlag = !horizontalFlag); + + el.style.top = `${styleTop}px`; + el.style.left = `${styleLeft}px`; + } + } + + setInterval(moveElement, 20); + + // 添加事件监听器以检测鼠标是否在元素上 + el.addEventListener('mouseover', () => { + isMouseOver = true; + }); + + el.addEventListener('mouseout', () => { + isMouseOver = false; + }); + function closeAd(){ + isMouseOver = true; + el.style.display = 'none' + } diff --git a/ruoyi-admin/src/main/resources/templates/home_footer.html b/ruoyi-admin/src/main/resources/templates/home_footer.html index 971d3f6..e69e7d2 100644 --- a/ruoyi-admin/src/main/resources/templates/home_footer.html +++ b/ruoyi-admin/src/main/resources/templates/home_footer.html @@ -5,7 +5,7 @@ background-color: #074488; color: #fff; margin-top: 20px; - width: 100%; + min-width: 1690px; display: flex; justify-content: center; }