Bootstrap

jq监听窗口大小变化

		function screenFuc() {
				var winWidth = $(window).innerWidth();
				if (winWidth <= 768) {
					//屏幕小于768px
				} else {
	
				}
			}
			(window.onresize = function() {
				screenFuc();
			})();
;