From 016a5432d2cd80e3bdb1626e005e45750f5993e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=9C=E7=AC=99=E6=AD=8C?= <2277317060@qq.com> Date: Mon, 6 Nov 2023 09:19:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/static/board/board2.css | 6 ++- .../src/main/resources/static/board/board2.js | 40 +++++++++++-------- .../src/main/resources/static/board/video.js | 2 - .../resources/templates/board/board2.html | 4 +- 4 files changed, 31 insertions(+), 21 deletions(-) diff --git a/haiwei-admin/src/main/resources/static/board/board2.css b/haiwei-admin/src/main/resources/static/board/board2.css index a56e4c8..42d9b47 100644 --- a/haiwei-admin/src/main/resources/static/board/board2.css +++ b/haiwei-admin/src/main/resources/static/board/board2.css @@ -108,9 +108,11 @@ body { background-size: 100% 100%; background-repeat: no-repeat; width: 43.76vh; + margin-right: 12px; height: calc(24vh - 12px); - position: absolute; - left: 43.76vh; + position: relative; + display: inline-block; + /*left: 43.76vh;*/ background-position: 0 1vw; } diff --git a/haiwei-admin/src/main/resources/static/board/board2.js b/haiwei-admin/src/main/resources/static/board/board2.js index d32e255..ce118f0 100644 --- a/haiwei-admin/src/main/resources/static/board/board2.js +++ b/haiwei-admin/src/main/resources/static/board/board2.js @@ -1,20 +1,25 @@ $(() => { + let VH =(window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight)/100; let itemNum = 0 - setInterval(function () { - let width = $('#bottom .item:eq(0)').outerWidth() + 12 - if (width * (itemNum - 1) > $('#bottom').width()) { - $('#bottom').animate({ - scrollLeft: width - }, 2000, () => { - $('#bottom').scrollLeft(0) - $('#bottom .item:eq(0)').slideToggle(0, function () { - $('#bottom').append($(this).clone().css({display: 'block'})); - $(this).remove(); - }); + let fun = () =>{ + let width = $('#bottom .info .item:eq(0)').outerWidth() + 18 + if ($('#bottom .info').width() > ($('#bottom ').width() + width)) { + $('#bottom ').animate({ + scrollLeft: width + }, 3000, () => { + $('#bottom').scrollLeft(0) + $('#bottom .info .item:eq(0)').slideToggle(0, function () { + let html = $(this).clone().css({display: 'inline-block'}) + $(this).remove(); + $('#bottom .info').append(html); }); + }); } - }, 2000); + } + setInterval(function () { + fun() + }, 5000); $.get(ctx + 'broad/home/queryCustomer', (e) => { $("#customerPresentation").empty() @@ -38,7 +43,7 @@ $(() => { $("#content").html(e.msg) }) $.get(ctx + 'broad/home/queryDevice', (e) => { - $("#bottom").empty() + $("#bottom .info").empty() let data = e?.data?.map(val => { return { name: val.deviceTypeName, @@ -48,14 +53,17 @@ $(() => { } }); itemNum = data.length; + + $("#bottom .info").width(itemNum*(44*VH+12)); data.forEach((e, i) => { let html = ` -