|
|
|
|
|
|
|
//banner
|
|
|
|
$(function(){
|
|
|
|
var owl = $('.brand__slider');
|
|
|
|
$('.brand__slider').owlCarousel({
|
|
|
|
loop:true,
|
|
|
|
margin:30,
|
|
|
|
autoplay:true,
|
|
|
|
autoplayTimeout:1000,
|
|
|
|
smartSpeed:500,
|
|
|
|
items:3,
|
|
|
|
navText:['<img src="../images/arrowleft.png" alt="">','<img src="../images/arrowright.png" alt="">'],
|
|
|
|
nav:true,
|
|
|
|
dots:false,
|
|
|
|
responsive:{
|
|
|
|
0:{
|
|
|
|
items:1
|
|
|
|
},
|
|
|
|
576:{
|
|
|
|
items:2
|
|
|
|
},
|
|
|
|
767:{
|
|
|
|
items:3
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('.category__item').on('mouseover',function(){
|
|
|
|
owl.trigger('stop.owl.autoplay')
|
|
|
|
})
|
|
|
|
$('.category__item').on('mouseleave',function(){
|
|
|
|
owl.trigger('play.owl.autoplay',[1000])
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
$("#header").load("../public/header1.html","",function(){
|
|
|
|
$('.header').addClass('on');
|
|
|
|
|
|
|
|
//移动端展开nav
|
|
|
|
$('#navToggle').on('click',function(){
|
|
|
|
$('.m_nav').addClass('open');
|
|
|
|
})
|
|
|
|
//关闭nav
|
|
|
|
$('.m_nav .top .closed').on('click',function(){
|
|
|
|
$('.m_nav').removeClass('open');
|
|
|
|
})
|
|
|
|
//二级导航 移动端
|
|
|
|
$(".m_nav .ul li").click(function() {
|
|
|
|
$(this).children("div.dropdown_menu").slideToggle('slow')
|
|
|
|
$(this).siblings('li').children('.dropdown_menu').slideUp('slow');
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
$("#footer").load("../public/footer.html");
|
|
|
|
|
|
|
|
//全屏滚动
|
|
|
|
$('#about_main').fullpage({
|
|
|
|
'navigation': true,
|
|
|
|
scrollBar: false,
|
|
|
|
slidesNavigation: true,
|
|
|
|
css3: true,
|
|
|
|
controlArrows: false,
|
|
|
|
continuousHorizontal:true,
|
|
|
|
scrollingSpeed:500,
|
|
|
|
showActiveTooltip :true,
|
|
|
|
anchors: ['hero', 'one', 'two', 'three','four','five'],
|
|
|
|
loopHorizontal: true,
|
|
|
|
afterLoad: function(anchorLink, index){
|
|
|
|
console.log(index)
|
|
|
|
$('header').addClass('on').addClass("animation");
|
|
|
|
if(index==1){
|
|
|
|
$('header').css('display','flex')
|
|
|
|
}else{
|
|
|
|
$('header').css('display','none')
|
|
|
|
}
|
|
|
|
},
|
|
|
|
afterSlideLoad:function(){
|
|
|
|
},
|
|
|
|
afterRender: function(){
|
|
|
|
},
|
|
|
|
onLeave: function(index, direction){
|
|
|
|
$(".header").removeClass("animation");
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
// 公共信息-基本信息
|
|
|
|
function getBasics(){
|
|
|
|
$.ajax({
|
|
|
|
type: 'post',
|
|
|
|
url: 'https://suzhou.njrenzhou.cn/api.php/index/getBasics',
|
|
|
|
data:{
|
|
|
|
group:'basics'
|
|
|
|
},
|
|
|
|
dataType: 'json',
|
|
|
|
success: function (res) {
|
|
|
|
if(res.code==200){
|
|
|
|
var data = res.data;
|
|
|
|
// 头部信息
|
|
|
|
// $('meta')[3].content = data[2].value;
|
|
|
|
// $('meta')[4].content = data[3].value;
|
|
|
|
$('link')[0].href = 'https://suzhou.njrenzhou.cn' + data[14].value;
|
|
|
|
// 集团简介
|
|
|
|
$('#basicsPhone').append(data[28].value);
|
|
|
|
$('#basicsAddress').append(data[26].value);
|
|
|
|
$('#basicsEmails').append(data[27].value);
|
|
|
|
// 底部信息
|
|
|
|
$('#basicsQrcode').append("<img src='https://suzhou.njrenzhou.cn" + data[22].value + "'>");
|
|
|
|
$('#basicsFooter').append("@2022-2032 苏州创新投资集团有限公司 <a href='https://beian.miit.gov.cn/' target='_blank'>" + data[8].value + "</a> " + data[9].value + "营业执照" + " 网站支持 <span style='border:1px solid #eaeaea;padding:2px 3px;border-radius:3px;font-weight:bold'>IPV6</span>");
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function (err) {
|
|
|
|
console.log(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
getBasics();
|
|
|
|
|
|
|
|
|
|
|
|
// // 关于我们-核心能力
|
|
|
|
// function getAbility(){
|
|
|
|
// var content='';
|
|
|
|
// $.ajax({
|
|
|
|
// type: 'post',
|
|
|
|
// url: 'https://suzhou.njrenzhou.cn/api.php/about/ability',
|
|
|
|
// data:{
|
|
|
|
// },
|
|
|
|
// dataType: 'json',
|
|
|
|
// success: function (res) {
|
|
|
|
// if(res.code==200){
|
|
|
|
// var item = res.data.ziyuan;
|
|
|
|
// console.log(item);
|
|
|
|
// // 要素资源
|
|
|
|
// $.each(item,function(index){
|
|
|
|
// content += "<div class='brand__thumb category__item transition-3'>";
|
|
|
|
// content += "<div class='business-effect'>";
|
|
|
|
// content += "<div class='e-img-l'><img alt='' src='../images/section4-hover01.png'></div>";
|
|
|
|
// content += "<div class='e-img-r'><img alt='' src='../images/section4-hover02.png'></div>";
|
|
|
|
// content += "</div>";
|
|
|
|
// content += "<div class='imgcontainer transition-3'>";
|
|
|
|
// content += "<img src='../images/科研机构@2x.png'>";
|
|
|
|
// content += "</div>";
|
|
|
|
// content += "<div class='contentText transition-3'>";
|
|
|
|
// content += "<div class='contenttitle'>"+ item[index].title + "</div>";
|
|
|
|
// content += "</div>";
|
|
|
|
// content += "<div class='maskContainer'>";
|
|
|
|
// content += "<div class='contenttitle'>科研机构</div>";
|
|
|
|
// content += "<p>联合各研究机构、院所助力科技成果转化</p>";
|
|
|
|
// content += "</div>";
|
|
|
|
// content += "</div>";
|
|
|
|
// })
|
|
|
|
// $('#ziyuan').append(content);
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// error: function (err) {
|
|
|
|
// console.log(err);
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// }
|
|
|
|
// getAbility();
|