main.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. $(function () {
  2. /*主大图切换*/
  3. var isPc = function () {
  4. if (
  5. window.navigator.userAgent.match(
  6. /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
  7. )
  8. ) {
  9. return false; // 移动端
  10. } else {
  11. return true; // PC端
  12. }
  13. }()
  14. $(".banner_wrapper .focus").sudyfocus({
  15. p: 2,
  16. zWidth: 1920,
  17. zHeight: 720,
  18. title: {
  19. isAutoWidth: true,
  20. active: false
  21. },
  22. text: {
  23. active: false,
  24. isAutoHeight: false,
  25. href: false
  26. },
  27. response: true,
  28. pagination: true,
  29. navigation: true,
  30. isNavHover: isPc,
  31. href: true,
  32. effect: 'slide'
  33. });
  34. /*教育教学tab*/
  35. $(".talent_tab").sudyTab({
  36. handle: ".tabs_nav_list .list_item",
  37. content: ".tabs_page_wrap .wrap_item",
  38. trigger: "click",
  39. start: 1,
  40. autoPlay: {
  41. active: false
  42. }
  43. });
  44. /*师生作品tab*/
  45. $(".works_tab").sudyTab({
  46. handle: ".tabs_nav_list .list_item",
  47. content: ".tabs_page_wrap .wrap_item",
  48. trigger: "click",
  49. start: 1,
  50. autoPlay: {
  51. active: false
  52. }
  53. });
  54. });