1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <title>cocoroboblockly</title>
- <!-- <script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/hand-pose-detection"></script>
- <script src="https://cdn.jsdelivr.net/npm/@mediapipe/hands">
- </script> -->
- <!-- <script type="text/javascript" src="https://qzonestyle.gtimg.cn/qzone/openapi/qc_loader.js" data-appid="101882546"
- charset="utf-8" data-redirecturi="https://fangzhen.cocorobo.cn/login" data-callback="true"></script> -->
- </head>
- <style>
- @charset "utf-8";
- div::-webkit-scrollbar {
- /*滚动条整体样式*/
- width: 6px;
- /*高宽分别对应横竖滚动条的尺寸*/
- height: 6px;
- }
- /*定义滚动条轨道 内阴影+圆角*/
- div::-webkit-scrollbar-track {
- border-radius: 10px;
- background-color: rgba(0, 0, 0, 0.1);
- }
- /*定义滑块 内阴影+圆角*/
- div::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
- background-color: rgba(0, 0, 0, 0.1);
- }
- .gdt::-webkit-scrollbar {
- /*滚动条整体样式*/
- width: 6px;
- /*高宽分别对应横竖滚动条的尺寸*/
- height: 10px;
- }
- /*定义滚动条轨道 内阴影+圆角*/
- .gdt::-webkit-scrollbar-track {
- border-radius: 10px;
- background-color: #eee;
- }
- /*定义滑块 内阴影+圆角*/
- .gdt::-webkit-scrollbar-thumb {
- border-radius: 10px;
- background-color: rgba(0, 0, 0, 0.1);
- }
- html,
- body {
- height: 100%;
- width: 100%;
- background: #e6eaf0;
- }
- </style>
- <body>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|