【简介】 滑动解锁插件slideunlock.js不依赖jquery等第三方库,当然,作者也提供了jquery.slideunlock.js依赖jquery的插件,这个滑动解锁插件适合移动端开发使用,无依赖版的插件js代码均使用的是es5语法。这里给大家介绍的是不依赖版本 注意,slideunlock.js节点选择使用了querySelectorAll,这个在IE10以下版本是不支持的
【效果】
【slideunlock的html结构】 [HTML] 纯文本查看 复制代码 <divclass="slideunlock-wrapper">
<input type="hidden"value="" class="slideunlock-lockable"/>
<divclass="slideunlock-slider">
<spanclass="slideunlock-label"></span>
<spanclass="slideunlock-lable-tip">Slide to unlock!</span>
</div>
</div> 【js代码】 [JavaScript] 纯文本查看 复制代码 <scripttype="text/javascript"src="js/slideunlock.min.js"></script>
<scripttype="text/javascript">
window.onload = function () {
var slider = newSliderUnlock(".slideunlock-slider", {}, function(){
alert('success');
}, function(){
document.querySelector(".warn").innerText = "index:"+ slider.index + ", max:" + slider.max + ",lableIndex:" + slider.lableIndex+ ",value:" +document.querySelector(".slideunlock-lockable").value + "date:" + new Date().getUTCDate();
});
slider.init();
document.querySelector("#reset-btn").addEventListener('click',function(){
slider.reset();
});
}
</script> 【slideunlock css样式代码】 [CSS] 纯文本查看 复制代码 .slideunlock-wrapper{
width: 360px;
position: relative;
padding: 50px;
background: #ECF0F1;
margin: 0 auto;
}
.slideunlock-slider{
padding:20px;
position: relative;
border-radius: 2px;
background-color: #FDEB9C;
overflow: hidden;
text-align: center;
}
.slideunlock-slider.success{
background-color: #E5EE9F;
}
.slideunlock-label{
width: 40px;
position: absolute;
left: 0;
top: 0;
height: 100%;
background: #E67E22;
z-index: 999;
border-radius: 2px;
cursor: pointer;
}
.slideunlock-label-tip{
z-index: 9;
}
@media screen and(max-width: 640px) {
.slideunlock-wrapper{
width: 64%;
}
} 【jquery.slideunlock.js的引用示例】 如果你使用的是依赖于jquery版本的,可以看一下如下示例 [JavaScript] 纯文本查看 复制代码 <scripttype="text/javascript"src="js/jquery.min.js"></script>
<script type="text/javascript"src="js/jquery.slideunlock.min.js"></script>
<scripttype="text/javascript">
$(function () {
var slider = newSliderUnlock(".slideunlock-slider", {
labelTip: "滑动解锁",
successLabelTip: "解锁成功",
duration: 200 // 动画效果执行时间,默认200ms
}, function(){
alert('success');
}, function(){
$(".warn").text("index:" + slider.index + ", max:" + slider.max +",lableIndex:" + slider.lableIndex + ",value:" + $(".slideunlock-lockable").val()+ " date:" + new Date().getUTCDate());
});
slider.init();
$("#reset-btn").on('click',function(){
slider.reset();
});
})
</script> 【slideunlock.js参数列表】 - labelTip://滑块上的提示文字
- successLabelTip://滑块成功后的提示文字
- duration://动画持续时间
- swipestart://是否开始滑动
- min://最小值
- max://最大值
- index://当前滑动条所处的位置
- IsOk://是否滑动成功
- lableIndex://鼠标在滑动按钮的位置
【案例代码】
|
|