手勢密碼也是現在很流行的一種功能本文主要介紹了jquery手勢密碼插件的相關知識,具有很好的參考價值,下面跟著小編一起來看下吧,希望能幫助到大家。
效果圖:
#程式碼如下:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <!--<link rel="stylesheet" href="../dist/css/danmuplayer.css" rel="external nofollow" >--> </head> <body> 正确的密码是一个字母“Z”的形状哦! <p id="gesturepwd"></p> </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>
相關推薦:
##JS基於正規表示式實作的密碼強度驗證功能範例_javascript技巧
以上是jquery手勢密碼外掛詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!