123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- $(function () {
- /*主大图切换*/
- var isPc = function () {
- if (
- window.navigator.userAgent.match(
- /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
- )
- ) {
- return false; // 移动端
- } else {
- return true; // PC端
- }
- }()
- $(".banner_wrapper .focus").sudyfocus({
- p: 2,
- zWidth: 1920,
- zHeight: 720,
- title: {
- isAutoWidth: true,
- active: false
- },
- text: {
- active: false,
- isAutoHeight: false,
- href: false
- },
- response: true,
- pagination: true,
- navigation: true,
- isNavHover: isPc,
- href: true,
- effect: 'slide'
- });
- /*教育教学tab*/
- $(".talent_tab").sudyTab({
- handle: ".tabs_nav_list .list_item",
- content: ".tabs_page_wrap .wrap_item",
- trigger: "click",
- start: 1,
- autoPlay: {
- active: false
- }
- });
- /*师生作品tab*/
- $(".works_tab").sudyTab({
- handle: ".tabs_nav_list .list_item",
- content: ".tabs_page_wrap .wrap_item",
- trigger: "click",
- start: 1,
- autoPlay: {
- active: false
- }
- });
- });
|