// JavaScript Document (function ($) { $.fn.myScroll = function (options) { //默认配置 var defaults = { speed: 40, //滚动速度,值越大速度越慢 rowHeight: 24 //每行的高度 }; var opts = $.extend({}, defaults, options), intId = []; function marquee(obj, step) { obj.find("ul").animate({ marginTop: '-=1' }, 0, function () { var s = Math.abs(parseInt($(this).css("margin-top"))); if (s >= step) { $(this).find("li").slice(0, 1).appendTo($(this)); $(this).css("margin-top", 0); } }); } this.each(function (i) { var sh = opts["rowHeight"], speed = opts["speed"], _this = $(this); intId[i] = setInterval(function () { if (_this.find("ul").height() <= _this.height()) { clearInterval(intId[i]); } else { marquee(_this, sh); } }, speed); _this.hover(function () { clearInterval(intId[i]); }, function () { intId[i] = setInterval(function () { if (_this.find("ul").height() <= _this.height()) { clearInterval(intId[i]); } else { marquee(_this, sh); } }, speed); }); }); } })(jQuery); ; $(function () { $("#kinMaxShow").kinMaxShow(); $("ul.c-box-1 li").hover(function() { var $this = $(this); if ($this.hasClass("on")) return; $this.parent().children("li").toggleClass("on"); $this.closest(".bd").find(".tab-same").hide(); $("div.c-box-2 .tab-same:eq(" + $this.index() + ")").fadeIn(); //console.log($(this).index()); //console.log($("div.c-box-2 .tab-same:eq(" + $(this).index() + ")").attr("id")); }); $("ul.pic-sma li").hover(function() { var $this = $(this); $this.find(".show").fadeIn("fast"); }, function() { var $this = $(this); $this.find(".show").fadeOut("fast"); }); $("div.list_lh").myScroll({ speed: 200, rowHeight: 24 }); }); function bm() { if ($.trim($("input[name='tel']").val()) == "") { $("input[name='tel']").focus(); return false; } else if ($.trim($("input[name='name']").val()) == "") { $("input[name='name']").focus(); return false; } else if ($.trim($("input[name='area']").val()) == "") { $("input[name='area']").focus(); return false; } else { $("#bmform").find("[type='submit']").val("提交中...").attr("disabled", true); $.ajax({ type: 'post', dataType: 'json', url: '/contact/liuyan', contentType: "application/x-www-form-urlencoded; charset=utf-8", data: $("#bmform").serialize(), success: function(data) { alert(data.msg); if (data.success) { $("#bmform").find("input.textinput").val(""); } else $("input[name='tel']").focus(); $("#bmform").find("[type='submit']").val("提交").attr("disabled", false); } }); return false; } }