|
|
|
@ -145,7 +145,7 @@
|
|
|
|
|
<a href="work_view.html" target="_blank">更多+</a>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="layui-card-body" style="max-height: 400px;overflow: hidden;">
|
|
|
|
|
<div class="layui-card-body" style="min-height: 400px;overflow: hidden;">
|
|
|
|
|
<div th:if="${!workList.isEmpty()}" style="width:100%;height: 165px;display: flex;justify-content: space-between;">
|
|
|
|
|
<div style="height: 100%;width: 47%;filter: brightness(1.1);">
|
|
|
|
|
<a th:href="@{/public_view.html(type=2,id=${workList[0].workId})}" th:title="${workList[0].workTitle}" target="_blank">
|
|
|
|
@ -236,7 +236,7 @@
|
|
|
|
|
<a href="business_view.html" target="_blank">更多+</a>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="layui-card-body" style="max-height: 400px;overflow: hidden;">
|
|
|
|
|
<div class="layui-card-body" style="min-height: 400px;overflow: hidden;">
|
|
|
|
|
<ul class="newslist-to">
|
|
|
|
|
<li style="list-style: none" th:each="business,status : ${businessList}" th:if="${!status.first}" th:class="${status.count == 1 ? 'firstLi' : (status.count == 2 ? 'secondLi' : (status.count == 3 ? 'thirdLi' : ''))}">
|
|
|
|
|
<span
|
|
|
|
@ -395,7 +395,7 @@
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
<script type="text/javascript" th:inline="javascript">
|
|
|
|
|
window.addEventListener('DOMContentLoaded', function () {
|
|
|
|
|
var currentUrl = location.href;
|
|
|
|
|
// 获取所有的<a>标签
|
|
|
|
@ -408,7 +408,6 @@
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
layui.use(function () {
|
|
|
|
|
var carousel = layui.carousel;
|
|
|
|
|
// 渲染 - 图片轮播
|
|
|
|
@ -556,6 +555,31 @@
|
|
|
|
|
isMouseOver = true;
|
|
|
|
|
el.style.display = 'none'
|
|
|
|
|
}
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
|
var noticeInner = document.querySelector('.notice__inner');
|
|
|
|
|
var noticeItems = Array.from(document.querySelectorAll('.notice__item'));
|
|
|
|
|
var currentIndex = 0;
|
|
|
|
|
function showCurrentNotice() {
|
|
|
|
|
var numToShow = Math.min(currentIndex + 1, noticeItems.length);
|
|
|
|
|
for (var i = 0; i < noticeItems.length; i++) {
|
|
|
|
|
noticeItems[i].style.height = '';
|
|
|
|
|
}
|
|
|
|
|
for (var i = 0; i < numToShow; i++) {
|
|
|
|
|
noticeItems[i].style.height = 'auto';
|
|
|
|
|
}
|
|
|
|
|
noticeInner.style.transform = "translateY(" + ((-noticeItems[currentIndex].clientHeight * currentIndex)*1.39) + "px)";
|
|
|
|
|
noticeInner.style.transition = "all 2.5s";
|
|
|
|
|
noticeInner.scrollTop = noticeItems[currentIndex].offsetTop;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
showCurrentNotice();
|
|
|
|
|
if (noticeItems.length > 1) {
|
|
|
|
|
setInterval(() => {
|
|
|
|
|
currentIndex = (currentIndex + 1) % noticeItems.length;
|
|
|
|
|
showCurrentNotice();
|
|
|
|
|
}, 2500);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|