123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- $(document).ready(function(){
-
-
-
-
-
- "use strict";
- window.onresize = function() {
- window.location.reload();
- };
- var slideShow = $(".slideShow"),
- ul = slideShow.find("ul"),
- showNumber = slideShow.find(".showNav span"),
- oneWidth = slideShow.find("ul li").eq(0).width();
- var timer = null;
- var iNow = 0;
- showNumber.on("click", function () {
- $(this).addClass("active").siblings().removeClass("active");
- var index = $(this).index();
- iNow = index;
- ul.animate({
- "left": -oneWidth * iNow,
- });
- });
- timer = setInterval(function () {
- iNow++;
- if (iNow > showNumber.length - 1) {
- iNow = 0;
- }
- showNumber.eq(iNow).trigger("click");
- }, 5000);
-
- $(".container_nav a").click(function(e){
- e.preventDefault();
- $(this).addClass("selected");
- $(this).siblings().removeClass("selected");
- var c = $(this).html();
-
- if(c == "跟单"){
- $(".nav_contain>div:first-child").addClass("active");
- $(".nav_contain>div:not(:first-child)").removeClass("active");
- }else if(c == "工艺"){
- $(".nav_contain div:nth-child(2)").addClass("active");
- $(".nav_contain div:not(:nth-child(2))").removeClass("active");
- }else if(c == "质检"){
- $(".nav_contain div:nth-child(3)").addClass("active");
- $(".nav_contain div:not(:nth-child(3))").removeClass("active");
- }else if(c == "加工"){
- $(".nav_contain div:nth-child(4)").addClass("active");
- $(".nav_contain div:not(:nth-child(4))").removeClass("active");
- }else if(c == "物流"){
- $(".nav_contain div:nth-child(5)").addClass("active");
- $(".nav_contain div:not(:nth-child(5))").removeClass("active");
- }
- });
-
- $("#eng").click(function(){
- $(".footer_title p:first-child").html("Fujian Shengteng Knltting Textlle Co.,Ltd.");
- $(".footer_top li:first-child").html("Contacts:LINXUEGUI (General Manager)");
- $(".footer_top li:nth-child(2)").html("Tel:+86 0591-28761238");
- $(".footer_top li:nth-child(3)").html("Mobile:13599097555");
- $(".footer_top li:last-child").html("Fax:+86 0591-28761296");
- $(".footer_bottom li:first-child").html("E-mail:fjshengteng@163.com");
- $(".footer_bottom li:last-child").html("Add:shenjutengda,Songxia Town,Changle City,Fujian Province,China");
- $(this).css("background","#5E97F5");
- $("#chn").css("background","transparent");
- });
- $("#chn").click(function(){
- $(".footer_title p:first-child").html("福建升腾针纺有限公司");
- $(".footer_top li:first-child").html("联系人:林雪贵(总经理)");
- $(".footer_top li:nth-child(2)").html("手机号码:13599097555");
- $(".footer_top li:nth-child(3)").html("电话:0591-28761238");
- $(".footer_top li:last-child").html("传真:0591-28761296");
- $(".footer_bottom li:first-child").html("邮箱:fjshengteng@163.com");
- $(".footer_bottom li:last-child").html("公司地址:福建省长乐市松下镇龙纺工业区");
- $(this).css("background","#5E97F5");
- $("#eng").css("background","transparent");
- });
- $(".swiper-slide").mouseover(function(){
-
- $(this).css({"transform":"scale(1.1)","transition":"all .2s linear"});
- }).mouseout(function(){
-
- $(this).css({"transform":"scale(1)","transition":"all .2s linear"});
- });
- var swiper = new Swiper('.swiper-container', {
- slidesPerView: 4.6,
- spaceBetween: 30,
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
- });
- });
|