diff --git a/haiwei-admin/src/main/resources/static/board/board2.js b/haiwei-admin/src/main/resources/static/board/board2.js index 98e5087..447f1eb 100644 --- a/haiwei-admin/src/main/resources/static/board/board2.js +++ b/haiwei-admin/src/main/resources/static/board/board2.js @@ -1,4 +1,21 @@ $(() => { + + 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(); + }); + }); + } + }, 2000); + $.get(ctx + 'broad/home/queryCustomer', (e) => { $("#customerPresentation").empty() let data = e?.data?.map(val => { @@ -24,10 +41,11 @@ $(() => { name: val.deviceTypeName, img: val.deviceTypePath, // img: '../../board/img/equipment.png', - url:val.deviceTypeUrl + url: val.deviceTypeUrl } - }) - data.forEach((e, i) => { + }); + itemNum = [...data, ...data, ...data, ...data, ...data, ...data].length; + [...data, ...data, ...data, ...data, ...data, ...data].forEach((e, i) => { let html = `
${e.name}