|
@@ -1,10 +1,8 @@
|
|
|
-// import 'css/bootstrap.less';
|
|
|
import 'bootstrap/dist/js/bootstrap.js';
|
|
|
import 'css/newMenu/public.css';
|
|
|
import 'css/newMenu/header.css'
|
|
|
import 'css/newMenu/index.css';
|
|
|
import 'css/inded.css';
|
|
|
-//import 'js/banner.js';
|
|
|
import 'js/public.js';
|
|
|
|
|
|
(function(){
|
|
@@ -13,19 +11,15 @@ import 'js/public.js';
|
|
|
function init(){
|
|
|
banner();
|
|
|
};
|
|
|
- //轮播
|
|
|
navTop();
|
|
|
function navTop() {
|
|
|
$(window).scroll(function(){
|
|
|
var scrolltop=$(document).scrollTop();
|
|
|
- if(scrolltop>0){
|
|
|
- $('.topNav').addClass('navFix')
|
|
|
- }else{
|
|
|
- $('.topNav').removeClass('navFix');
|
|
|
- }
|
|
|
- videoAuto();
|
|
|
+ $('.topNav')[scrolltop>0?'addClass':'removeClass']('navFix');
|
|
|
+ videoAuto();
|
|
|
});
|
|
|
- }
|
|
|
+ }
|
|
|
+ //轮播
|
|
|
function banner(){
|
|
|
$('#myCarousel').carousel({
|
|
|
interval: 4000
|
|
@@ -38,18 +32,9 @@ import 'js/public.js';
|
|
|
})
|
|
|
//搜索功能
|
|
|
$(".searchImg").click(function(){
|
|
|
- //var seachon=$(".jumpType li.active").index();
|
|
|
var key=$('.demandSearch').val();
|
|
|
sessionStorage.setItem("name",key);
|
|
|
window.open(globalConfig.context + `/portal/search.html`);
|
|
|
-// switch(seachon){
|
|
|
-// case 0:window.open(globalConfig.context + `/portal/technologyTrading/achievementList.html?name=${key}`);break;
|
|
|
-// case 1:window.open(globalConfig.context + `/portal/technologyTrading/demandList.html?name=${key}`);break;
|
|
|
-// case 2:window.open(globalConfig.context + `/portal/service/patentList?name=${key}`);break;
|
|
|
-// case 3:window.open(globalConfig.context + `/portal/thinkTank/policyList?name=${key}`);break;
|
|
|
-// case 4:window.open(globalConfig.context + `/portal/service/serviceList?name=${key}`);break;
|
|
|
-// default :break;
|
|
|
-// }
|
|
|
})
|
|
|
function task(){
|
|
|
if($(".brands>div>img:nth-child(1)").hasClass("active")){
|
|
@@ -92,7 +77,7 @@ import 'js/public.js';
|
|
|
let videoH = $('.wield_cont')[0],
|
|
|
clentH = videoH.getBoundingClientRect();
|
|
|
if(clentH.top < (document.documentElement.clientHeight+200)){
|
|
|
- if(status){
|
|
|
+ if(status){ //只自动播放一次
|
|
|
myVideo.play();
|
|
|
status=false;
|
|
|
}
|