简单穿梭框代码
作者:互联网
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>穿梭框</title>
<link rel="stylesheet" href="index.css">
<script src="jquery.min.js"></script>
<style>
ul,
li {
margin: 0;
padding: 0;
list-style: none;
}
body {
background-color: #e3e3e3;
margin: 0px;
}
.box {
width: 300px;
background-color: #ffffff;
height: 240px;
float: left;
}
.Path {
color: #ffffff !important;
background-color: #1890ff !important;
border-bottom: 1px solid #ffffff;
transition: all .01s;
}
.box li {
padding: 8px;
border-bottom: 1px solid #ffffff;
background-color: #f4f4f4;
cursor: pointer;
transition: all .5s;
}
#btn {
height: 240px;
float: left;
width: 80px;
text-align: center;
}
#btn button {
width: 50px;
height: 30px;
display: block;
margin: 20px auto;
line-height: 30px;
color: white;
cursor: pointer;
background-color: #1890ff;
border-radius: 5px;
transition: all .5s;
border: none;
}
</style>
</head>
<body>
<li class="box">
<ul id="shuttleLeft">
<li>王小婷1</li>
<li>王小婷2</li>
<li>王小婷3</li>
</ul>
</li>
<li id="btn">
<button id="toRight">></button>
<button id="toLeft"><</button>
</li>
<li class="box">
<ul id="shuttleRight">
<li>祈澈菇凉1</li>
<li>祈澈菇凉2</li>
<li>祈澈菇凉3</li>
</ul>
</li>
</body>
<script>
//穿梭框左侧选中
$("#shuttleLeft").on('click', 'li', function() {
if($(this).hasClass('Path')) {
$(this).removeClass('Path');
} else {
$(this).addClass('Path');
}
});
//穿梭框右侧选中
$("#shuttleRight").on('click', 'li', function() {
if($(this).hasClass('Path')) {
$(this).removeClass('Path');
} else {
$(this).addClass('Path');
}
});
//向右移动
$("#toRight").click(function() {
if($("#shuttleLeft .Path").length == 0) return false;
$("#shuttleLeft").find('.Path').appendTo("#shuttleRight");
$("#shuttleRight li").removeClass('Path');
});
//向左移动
$("#toLeft").click(function() {
if($("#shuttleRight .Path").length == 0) return false;
$("#shuttleRight .Path").appendTo("#shuttleLeft");
$("#shuttleLeft li").removeClass('Path');
});
</script>
</html>
标签:shuttleRight,color,代码,li,穿梭,shuttleLeft,background,简单,Path 来源: https://blog.csdn.net/u012830303/article/details/115319154