%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.41 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/ppaobm/vendor/bower-asset/fullcalendar/tests/manual/ |
Upload File : |
<!DOCTYPE html> <html> <head> <meta charset='utf-8' /> <script src='../../node_modules/jquery/dist/jquery.js'></script> <script> $(function() { $(document) .on('mousedown', function(ev) { console.log('mousedown'); //, ev.target); }) .on('mouseup', function(ev) { console.log('mouseup'); //, ev.target); }) .on('mousemove', function(ev) { console.log('mousemove'); //, ev.target); }) .on('mouseover', function(ev) { console.log('mouseover'); //, ev.target); }) .on('mouseout', function(ev) { console.log('mouseout'); //, ev.target); }) .on('click', function(ev) { console.log('click'); //, ev.target); }) .on('touchstart', function(ev) { console.log('touchstart'); //, ev.target); }) .on('touchend', function(ev) { console.log('touchend'); //, ev.target); }) .on('touchmove', function(ev) { console.log('touchmove'); //, ev.target); //ev.preventDefault(); }); $('#scroll') .on('scroll', function(ev) { console.log('scroll'); //, ev.target); }); /* tap: +touchstart (delay) +touchend (delay) +mousemove +mousedown +mouseup +click */ }); </script> <style> </style> </head> <body> <div id='scroll' style='width:400px;height:400px;overflow:auto;border:1px solid #000;float:left'> <div style='width:800px;height:800px'> test </div> </div> <a href='#' style='float:left;margin-left:1em'>this is a link</a> </body> </html>