捕鱼赚钱app要闻

CAMPUS NEWS
学术预告 ACADEMIC PREVIEW 更多+

通知公告

NOTICE

全景校园

PANORAMIC CAMPUS
主要研究方向为图像处理

专题专栏

ACADEMIC INFORMATION
计算机视觉 机器捕鱼赚钱app与人工智能等 主持捕鱼赚钱app自然科学基金 捕鱼赚钱app重点研发计划子课题

地点:明远楼报告厅

新浪微博

捕鱼赚钱app研究生院副院长

捕鱼赚钱app

历城校区:济南市历城区桑园路60号 邮编:250100

长清校区:济南市长清区丁香路3500号 邮编:250357

鲁ICP备05015382号-2 版权所有:捕鱼赚钱app

Copyright www.starofmyparty.com All Rights Reserved

捕鱼赚钱app研究生工作部副部长

扫一扫关注微信号

研究生质量保障办公室主任(兼)

扫一扫切换手机版

捕鱼赚钱app管理捕鱼赚钱app教授

捕鱼赚钱app接诉即办系统

"; for(var i=0; i < len; i++) { btn += ""; } $("#focus").append(btn); $("#focus .btnBg").css("opacity",0.2); //为小按钮添加鼠标滑入事件,以显示相应的内容 $("#focus .btn span").css("opacity",0.4).mouseenter(function() { index = $("#focus .btn span").index(this); showPics(index); }).eq(0).trigger("mouseenter"); //上一页、下一页按钮透明度处理 $("#focus .preNext").css("opacity",0.2).hover(function() { $(this).stop(true,false).animate({"opacity":"0.5"},300); },function() { $(this).stop(true,false).animate({"opacity":"0.2"},300); }); //上一页按钮 $("#focus .pre").click(function() { index -= 1; if(index == -1) {index = len - 1;} showPics(index); }); //下一页按钮 $("#focus .next").click(function() { index += 1; if(index == len) {index = 0;} showPics(index); }); //本例为左右滚动,即所有li元素都是在同一排向左浮动,所以这里需要计算出外围ul元素的宽度 $("#focus ul").css("width",sWidth * (len)); //鼠标滑上焦点图时停止自动播放,滑出时开始自动播放 $("#focus").hover(function() { clearInterval(picTimer); },function() { picTimer = setInterval(function() { showPics(index); index++; if(index == len) {index = 0;} },6000); //此4000代表自动播放的间隔,单位:毫秒 }).trigger("mouseleave"); });