2019.05.08 70周年社庆 封面修改
修改功能:
1、集团动态新闻由滚动变成不滚动
2、增加官网皮肤管理,背景渲染
实现效果:
修改位置:
<!-- index.html-->
<div class="index_all">
<div class="seven_zjdaily">
<img src="assets/images/tj/seven.png" alt="70周年图片">
</div>
<!--增加一层div,直接位于body下面,增加index_all类,设置它的样式background-->
/* base.css*/
.index_all{
width: 100%;
height: 100%;
background-color: red;/*2019-05.08*/
background:url('../images/tj/seven_bg.png') no-repeat;
background-size: 100% 100%;
}
.contener {
width: 1080px;
/*height: 800px;*/
height: 100%;
margin: 0 auto;
position: relative;
padding-top: 10px;
padding-left: 42px;
background-color: #fff;
}
.seven_zjdaily{
width: 1080px;
text-align: center;
margin: 0 auto;
}
.seven_zjdaily img{
width: 70%;
}
// base.js
//开始文字滚动
if(gnFlowTextTimer==null){
setTimeout(gnFlowText,40);
}
//将以上文字滚动部分注释掉
2019.05.20 恢复页面
修改功能:
1、去掉70周年的背景
2、添加回集团动态新闻滚动
实现效果
修改位置:
<!-- index.html-->
<div class="seven_zjdaily">
<img src="assets/images/tj/seven.png" alt="70周年图片">
</div>
<!--去掉以上部分,‘index_all’依然保留这个div-->
/* index.html*/
.index_all{
width: 100%;
height: 100%;
/*background-color: red;*//*2019-05.08*/
/*background:url('../images/tj/seven_bg.png') no-repeat;*/
background-size: 100% 100%;
}
/* 注释掉backgroud部分,其它的保留*/
// base.js
//开始文字滚动
if(gnFlowTextTimer==null){
setTimeout(gnFlowText,40);
}
//去掉以上文字的注释,打开功能