You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
work-portal/ruoyi-admin/src/main/resources/templates/home_head.html

130 lines
4.4 KiB

1 year ago
<div th:fragment="home_head">
<head>
<style>
.homePage{
color: #fff;
10 months ago
font-size: 23px;
1 year ago
display: block;text-align: center;
10 months ago
/*font-weight: bold;padding: 0 14px;*/
1 year ago
letter-spacing: 2px;
}
#hd {
position: relative;
10 months ago
height: 326px;
1 year ago
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
10 months ago
min-width: 1690px;
10 months ago
margin: 0 auto;
10 months ago
margin-bottom: 35px;
1 year ago
}
#hd .bg_image1{
width:100%;
10 months ago
height: 326px;
1 year ago
}
#ltlogo {
position: absolute;
top: 43%; /* 将图像元素垂直居中 */
left: 43%; /* 将图像元素水平居中 */
height: 122px;
1 year ago
transform: translate(-50%, -50%);
}
#dhl {
padding-bottom: 0;
font-style: inherit;
}
9 months ago
#dhl .layui-nav-item a{
color: rgba(255,255,255,1) !important;
}
10 months ago
.layui-nav {
display: flex;
justify-content: center;
9 months ago
background-color: #0b61d3;
10 months ago
width: 100%;
position: absolute;
bottom: -26px;
z-index: 111;
}
10 months ago
.layui-elem-quote{
border-left: 5px solid #005cb1;
}
.timeDt {
position: absolute;
display: inline-block;
vertical-align: middle;
font-size: 14px;
color: #fff;
top: 5%;
left: 9%;
}
1 year ago
</style>
</head>
<div id="hd">
9 months ago
<img class="bg_image1" th:src="@{/home/base/new_top_bg2.jpg}">
<div class="timeDt">
<span th:text="${#dates.format(new java.util.Date().getTime(), 'yyyy年MM月dd日')}"></span>
<span th:text="${#dates.format(new java.util.Date().getTime(), 'EEEE')}"></span>
</div>
<img th:src="@{/home/base/lantie4.png}" id="ltlogo" >
1 year ago
<ul class="layui-nav" id="dhl">
<li class="layui-nav-item">
<a href="base.html" class="homePage">首页</a>
</li>
<li class="layui-nav-item">
<a href="announce_view.html" class="homePage">通知公告</a>
</li>
<li class="layui-nav-item">
<a href="work_view.html" class="homePage">工作动态</a>
</li>
10 months ago
<li class="layui-nav-item dept">
1 year ago
<a href="dept_trends_view.html" class="homePage">部门动态</a>
</li>
<li class="layui-nav-item">
<a href="business_view.html" class="homePage">检察业务</a>
</li>
10 months ago
<li class="layui-nav-item special">
1 year ago
<a href="special_view.html" class="homePage">专题活动</a>
</li>
<form action="" id="search_form" class="layui-form" style="display:flex;margin-top:11px;margin-left:40px;">
<label>
<input name="title" id="title" type="text" placeholder="请输入搜索内容" class="layui-input">
</label>
<button class="layui-btn" onclick="queryList()" style="background-color: rgb(51, 111, 184);">搜索</button>
1 year ago
</form>
</ul>
</div>
<script th:src="@{/js/jquery.min.js?v=3.6.3}"></script>
<script th:src="@{/home/lib/layui.js}"></script>
1 year ago
1 year ago
<script type="text/javascript">
1 year ago
layui.use(function(){
var carousel = layui.carousel;
// 渲染 - 常规轮播
carousel.render({
elem: '#ID-carousel-demo-1',
width: 'auto',
indicator:'none',
arrow:'none',
width: '100%',
10 months ago
height: '326px',
1 year ago
});
});
1 year ago
function queryList(){
var title = $("#title").val();
if (title){
$('#search_form').submit(function(){
var actionStr="/search";
$("#search_form").removeAttr("action").attr("action",actionStr);
return true;
});
}else{
alert("请输入查询关键字!")
}
}
1 year ago
1 year ago
</script>
</div>