手勢解鎖對我們來說肯定是很常見的,用jquery實現的手勢解鎖見過嘛~免費提供源碼哦~~拿去研究吧~~
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>PHP中文网</title> </head> <body> 正确的密码是一个字母“Z”的形状哦! <div id="gesturepwd"></div> </body> <script src="http://www.jq22.com/demo/jQueryGesturePassword20161102/jquery-2.1.4.min.js"></script> <script src="http://www.jq22.com/demo/jQueryGesturePassword20161102/src/jquery.gesture.password.js"></script> <!--<script src="../dist/js/danmuplayer.min.js"></script>--> <script> $("#gesturepwd").GesturePasswd({ backgroundColor:"#252736", //背景色 color:"#FFFFFF", //主要的控件颜色 roundRadii:25, //大圆点的半径 pointRadii:6, //大圆点被选中时显示的圆心的半径 space:30, //大圆点之间的间隙 width:240, //整个组件的宽度 height:240, //整个组件的高度 lineColor:"#00aec7", //用户划出线条的颜色 zindex :100 //整个组件的css z-index属性 }); $("#gesturepwd").on("hasPasswd",function(e,passwd){ var result; if(passwd == "1235789"){ result=true; } else { result=false; } if(result == true){ $("#gesturepwd").trigger("passwdRight"); setTimeout(function(){ //密码验证正确后的其他操作,打开新的页面等。。。 alert("密码正确!") },500); //延迟半秒以照顾视觉效果 } else{ $("#gesturepwd").trigger("passwdWrong"); //密码验证错误后的其他操作。。。 } }); </script> </html>
PHP中文網###相關推薦:########### #######css實作會動的貓臉###############原生js實作下拉列錶框###########js原聲實現簡單的微信聊天功能######
以上是jquery實現手勢解鎖源碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!