| 12345678910111213141516171819202122232425262728 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width" />
- <title>requirejs</title>
- <style>
- .draggie {
- width: 100px;
- height: 100px;
- background: #09F;
- }
- </style>
- <script data-main="main" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.js"></script>
- </head>
- <body>
- <h1>requirejs</h1>
- <div class="draggie"></div>
- </body>
- </html>
|