移动端手机手势解锁
CSS Code
- <style type="text/css">
- body{
- text-align: center;
- background: #305066;
- }
- h4{
- color: #22C3AA;
- }
- @keyframes no {
- 0%{ transform: translateX(0)}
- 20%{transform: translateX(-20px)}
- 40%{transform: translateX(20px)}
- 60%{transform: translateX(-10px)}
- 80%{transform: translateX(10px)}
- 100%{transform: translateX(0)}
- }
- .on{
- transition: all 1s;
- margin-top: 300px;
- font-size: 80px;
- width: 100%;
- opacity: 0;
- }
- </style>
JavaScript Code
- <script type="text/javascript">
- new canvasLock({chooseType:3}).init();
- </script>
原文地址:http://www.freejs.net/article_jquerywenzi_740.html