JQuery 从右侧向左滑动

html: 点击 id 为 bookmark  的 div 时触发事件



css:

.bookmarak {
float: right;
width: 38px;
height: 38px;
border: 2px solid #445c10;
margin-top: 10px;
margin-right: 10px;
cursor: pointer;
}

JQ:

引入jq 

 
jq代码:

要滑动的 div  html 代码:

css:

#category{
	position:absolute;
	background:#cdd7b2;
	z-index:10;
	width:430px;
	left:480px;
	opacity: 0.95;
	height:100%;
}


JQuery 从右侧向左滑动_第1张图片

你可能感兴趣的:(css,JQuery)