jQuery实现简单穿梭框
效果图
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>穿梭框</title>
<link rel="stylesheet" href="index.css">
<script src="libs.baidu/jquery/1.8.3/jquery.min.js"></script>
</head>
<body>
<ul id="shuttle_box">
<li class="shuttle_box_li shuttle_box_near">
<ul id="shuttle_box_left">
<li>上海市⼈民⼴场</li>
<li>上海市⼈民⼴场</li>
<li>上海市⼈民⼴场</li>
<li>上海市⼈民⼴场</li>
<li>上海市⼈民⼴场</li>
<li>上海市⼈民⼴场</li>
<li>上海市⼈民⼴场</li>
<li>上海市⼈民⼴场</li>
<li>上海市⼈民⼴场</li>
<li>上海市⼈民⼴场</li>
</ul>
</li>
<li class="shuttle_box_li" id="shuttle_box_mid">
<button id="shuttle_box_toRight">》》</button>
<button id="shuttle_box_toLeft">《《</button>
</li>
<li class="shuttle_box_li shuttle_box_near">
<ul id="shuttle_box_right">
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
<li>上海市徐泾东</li>
</ul>
</li>
</ul>
<script src="index.js"></script>
</body>
</html>
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td {
margin:0; padding:0;
list-style: none;
}
body{background-color: #e3e3e3;margin: 0px;}
#shuttle_box{width:800px;zoom: 1;margin: 100px auto;}
#shuttle_box:after{
content: ".";
clear: both;
display: block;
height: 0;
overflow: hidden;
visibility: hidden;
}
.shuttle_box_li{height: 540px;float: left;}
.shuttle_box_near{width:300px;background-color:#ffffff;overflow-y: scroll;overflow-x:hidden;border-radius: 10px;}
.shuttle_box_li_act{color:#ffffff !important;background-color: #1890ff !important;border-bottom: 1px solid #ffffff;transition: all .01s;} .shuttle_box_near::-webkit-scrollbar {/*滚动条整体样式*/
width: 6px;    /*⾼宽分别对应横竖滚动条的尺⼨*/
height: 1px;
}
.shuttle_box_near::-webkit-scrollbar-thumb {/*滚动条⾥⾯⼩⽅块*/
border-radius: 20px;
background-color: rgba(0,0,0,0.5);
}
.shuttle_box_near::-webkit-scrollbar-track {/*滚动条⾥⾯轨道*/
background-color: rgba(0,0,0,0.2);
border-radius: 20px;
}
.shuttle_box_near li{
padding:8px;
border-bottom: 1px solid #ffffff;
background-color: #f4f4f4;
cursor: pointer;
transition: all .5s;
}
.shuttle_box_li_act:hover{opacity: 0.7;transition: all .01s;}
#shuttle_box_mid{width:80px;text-align: center;}
#shuttle_box_mid button{
width: 50px;
height:30px;
display: block;
borderbox
margin:20px auto;
line-height: 30px;
color:white;
cursor: pointer;
background-color: #1890ff;
border-radius: 5px;
transition: all .5s;
border:none;
}
#shuttle_box_mid button:hover{opacity: 0.7;transition: all .5s;}
#shuttle_box_toRight{margin-top:225px !important;}
//穿梭框左侧选中
$("#shuttle_box_left").on('click', 'li', function () {
if ($(this).hasClass('shuttle_box_li_act')) {
$(this).removeClass('shuttle_box_li_act');
} else {
$(this).addClass('shuttle_box_li_act');
}
});
/
/穿梭框右侧选中
$("#shuttle_box_right").on('click', 'li', function () {
if ($(this).hasClass('shuttle_box_li_act')) {
$(this).removeClass('shuttle_box_li_act');
} else {
$(this).addClass('shuttle_box_li_act');
}
});
//向右移动
$("#shuttle_box_toRight").click(function () {
if ($("#shuttle_box_left .shuttle_box_li_act").length == 0) return false;
$("#shuttle_box_left").find('.shuttle_box_li_act').appendTo("#shuttle_box_right");
$("#shuttle_box_right li").removeClass('shuttle_box_li_act');
});
//向左移动
$("#shuttle_box_toLeft").click(function () {
if ($("#shuttle_box_right .shuttle_box_li_act").length == 0) return false;
$("#shuttle_box_right .shuttle_box_li_act").appendTo("#shuttle_box_left");
$("#shuttle_box_left li").removeClass('shuttle_box_li_act');
});
是不是有点⼉简单----哈啊哈,我也觉得
如果你想任性,那就先学会承受,能承受后果才可以任性。如果你想独⽴,那就先学会坚强,才可以
独⽴。如果你想放肆的爱,那就先学会遗忘,只有能忘掉失恋痛楚,才可以⼤胆爱。你可以去做⼀切事情,但前提是不会为结果伤悲。⼀个⼈真正的强⼤,并⾮看他能做什么,⽽是看他能承担什么。
勇敢的做⾃⼰,不要为任何⼈⽽改变。⼼存希望,幸福就会降临你;⼼存梦想,机遇就会笼罩你;⼼存坚持,快乐就会常伴你;⼼存真诚,平安就会跟随你;⼀旦有了贪欲,就注定要失去。如果你简单,这个世界就对你简单。