//滚动鼠标时 滚动横向滚动条
$doc.unbind('mousewheel').bind('mousewheel', function (event) {
if ($doc.outerWidth() > $win.width()) {if (event.deltaX === 0) {
$doc.scrollLeft($doc.scrollLeft() + event.deltaY * event.deltaFactor);
}
}
});
//滚动鼠标时 滚动横向滚动条
$doc.unbind('mousewheel').bind('mousewheel', function (event) {
if ($doc.outerWidth() > $win.width()) {