• HTML5 canvas的事件


    HTML5 canvas的事件

    <script>
    var canvas = document.getElementById("myCanvas");
    var context = canvas.getContext("2d");

    context.strokeStyle = "black";
    context.fillStyle = "red";
    context.rect(0, 0, 300, 400);
    context.fill();

    canvas.onmousedown = function() {
    console.log("123");
    }
    canvas.onmouseup = function() {
    console.log("456");
    };
    canvas.onmousemove = function() {
    console.log("789");
    }

    canvas.onclick = function() {
    console.log("999");
    }
    </script>

    1. onabortnull
    2. onbeforeunloadnull
    3. onblurnull
    4. oncanplaynull
    5. oncanplaythroughnull
    6. onchangenull
    7. onclicknull
    8. oncontextmenunull
    9. ondblclicknull
    10. ondeviceorientationnull
    11. ondragnull
    12. ondragendnull
    13. ondragenternull
    14. ondragleavenull
    15. ondragovernull
    16. ondragstartnull
    17. ondropnull
    18. ondurationchangenull
    19. onemptiednull
    20. onendednull
    21. onerrornull
    22. onfocusnull
    23. onhashchangenull
    24. oninputnull
    25. oninvalidnull
    26. onkeydownnull
    27. onkeypressnull
    28. onkeyupnull
    29. onloadnull
    30. onloadeddatanull
    31. onloadedmetadatanull
    32. onloadstartnull
    33. onmessagenull
    34. onmousedownnull
    35. onmousemovenull
    36. onmouseoutnull
    37. onmouseovernull
    38. onmouseupnull
    39. onmousewheelnull
    40. onofflinenull
    41. ononlinenull
    42. onpagehidenull
    43. onpageshownull
    44. onpausenull
    45. onplaynull
    46. onplayingnull
    47. onpopstatenull
    48. onprogressnull
    49. onratechangenull
    50. onresetnull
    51. onresizenull
    52. onscrollnull
    53. onsearchnull
    54. onseekednull
    55. onseekingnull
    56. onselectnull
    57. onstallednull
    58. onstoragenull
    59. onsubmitnull
    60. onsuspendnull
    61. ontimeupdatenull
    62. onunloadnull
    63. onvolumechangenull
    64. onwaitingnull
    65. onwebkitanimationendnull
    66. onwebkitanimationiterationnull
    67. onwebkitanimationstartnull
    68. onwebkittransitionendnull
  • 相关阅读:
    mysql5.7编译安装
    web服务部署工具使用介绍
    Clang Static Analyzer
    MySQL中character set与collation
    Linux 编译运行查找头文件和库的顺序
    git入门及使用记录
    CentOS7通过yum安装gdb8 gcc8 g++8的方法
    win10子系统设置开机启动ssh服务
    STL中map的使用
    C++逆序输出字符串
  • 原文地址:https://www.cnblogs.com/happyPawpaw/p/2554605.html
Copyright © 2020-2023  润新知