Html
    Css
    Js

    
                        
* {
	padding:0;
	margin:0;
}
html,body {
	width:100%;
}
#box {
	margin:30px auto 0;
	width:490px;
	height:340px;
	border:1px solid #000000;
	position:relative;
}
div.item {
	width:150px;
	height:100px;
	margin:5px;
	float:left;
	border:1px solid lightgray;
	z-index:1;
	cursor:move;
}
div.moving {
	/*拖拽后的样式*/
	border:1px dashed gray;
	background:white;
}
div.draging {
	/*图片拖拽出来后的样式*/
				width:150px;
	height:100px;
	position:absolute;
	z-index:500;
}

                        
↑上面代码改变,会自动显示代码结果 jQuery调用版本:1.11.3
 立即下载

九宫格拖拽效果(原创)

0