js——设置鼠标悬停事件

js——设置鼠标悬停事件_第1张图片js——设置鼠标悬停事件_第2张图片

鼠标悬停前后

function HoverAndMouseout(){
	$(".zhangjie").hover(
                function () {
                    $(this).css({ "width": "500px" });//移上宽度变为500
                });
            $(".zhangjie").mouseout(
                function () {
                    $(this).css({ "width": "170px" });//移开还原
                });
       }

 

你可能感兴趣的:(前端)