product.js 1.21 KB
(function ($) {
    
    $("#function .row .box:eq(0)").addClass("active");
    
    if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i))) {
        
        $("#function .function-item:eq(0)").fadeIn();
        
        //手机端产品功能框插入到标题之后
        $("#function .row .box").each(function(){            
            var index = $("#function .row .box").index(this);            
            $("#function .function-item:eq("+index+")").insertAfter($(this));
        });
    }
    
    
	$('#function .row .box').on('click', function() {
			
		var index = $("#function .row .box").index(this);
		$("#function .function-item").hide();
		
		$("#function .row .box").removeClass("active");
		$(this).addClass("active");
				
		if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i))) {
			console.log(index)
			$("#function .function-item:eq("+index+")").fadeIn();
        } else {
			$("#function .function-item:eq("+index+")").fadeIn();
        }
		
	});	
	
	
})(jQuery);