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

137 lines
4.4 KiB

<div th:fragment="home_head">
<head>
<style>
.homePage{
color: #fff;
font-size: 1.3vw;
display: block;text-align: center;
/*font-weight: bold;padding: 0 14px;*/
letter-spacing: 2px;
}
#hd {
position: relative;
//background-image: url(/home/base/bg-head5.png);
//background-position-y:56%;
height: 477px;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
#hd .bg_image1{
width:100%;
height:100%;
}
#ltlogo {
position: absolute;
top: 43%; /* 将图像元素垂直居中 */
left: 30%; /* 将图像元素水平居中 */
height: 82px;
transform: translate(-50%, -50%);
}
#dhl {
padding-bottom: 0;
font-style: inherit;
}
.layui-nav {
position: absolute;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
background-color: rgba(7,68,136,1);
}
</style>
</head>
<div id="hd">
<div class="layui-carousel" id="ID-carousel-demo-1" style="width: 100%;height: 477px;">
<div carousel-item>
<div>
<img class="bg_image1" th:src="@{/home/base/bg-head5.png}">
</div>
</div>
</div>
<div style=" position: absolute;
font-size: 52px;
font-weight: 900;
color: white;
top: 33%;
left: 5%;
width: 77vw;
height: 105px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;">
<img th:src="@{/home/base/logo.png}" style="width: 8%;" alt="">
<span>甘肃省人民检察院兰州铁路运输分院</span><br>
<span style="font-size: 19.5px;
position: absolute;
left: 10%;
top: 74%;">Lanzhou Railway Transport Branch of Gansu Provincial People's Procuratorate</span>
</div>
<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>
<li class="layui-nav-item">
<a href="dept_trends_view.html" class="homePage">部门动态</a>
</li>
<li class="layui-nav-item">
<a href="business_view.html" class="homePage">检察业务</a>
</li>
<li class="layui-nav-item">
<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()">搜索</button>
</form>
</ul>
</div>
<script th:src="@{/js/jquery.min.js?v=3.6.3}"></script>
<script th:src="@{/home/lib/layui.js}"></script>
<script type="text/javascript">
layui.use(function(){
var carousel = layui.carousel;
// 渲染 - 常规轮播
carousel.render({
elem: '#ID-carousel-demo-1',
width: 'auto',
indicator:'none',
arrow:'none',
width: '100%',
height: '477px',
});
});
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("请输入查询关键字!")
}
}
</script>
</div>