diff options
Diffstat (limited to 'examples/web/core/loader.html')
| -rw-r--r-- | examples/web/core/loader.html | 106 |
1 files changed, 53 insertions, 53 deletions
diff --git a/examples/web/core/loader.html b/examples/web/core/loader.html index b584039..f0ff4d7 100644 --- a/examples/web/core/loader.html +++ b/examples/web/core/loader.html @@ -1,13 +1,13 @@ <!DOCTYPE html> <html> - <head> - <title>loading...</title> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - - <meta name="title" content="raylib - example"> - <meta name="description" content="raylib is a simple and easy-to-use library to enjoy videogames programming. This a small example of what you can do."> - <meta name="keywords" content="raylib, videogames, programming, C, C++, library, learn, study, simple, easy, free, open source, raysan"> - <meta name="viewport" content="width=device-width"> + <head> + <title>loading...</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + + <meta name="title" content="raylib - example"> + <meta name="description" content="raylib is a simple and easy-to-use library to enjoy videogames programming. This a small example of what you can do."> + <meta name="keywords" content="raylib, videogames, programming, C, C++, library, learn, study, simple, easy, free, open source, raysan"> + <meta name="viewport" content="width=device-width"> <!-- Open Graph metatags for sharing --> <meta property="og:title" content="raylib - example"/> @@ -16,42 +16,42 @@ <meta property="og:site_name" content="raylib"/> <meta property="og:description" content="This is a small example of what you can do with raylib"/> - <!-- Add jQuery library --> - <script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script> - - <!-- hightlight.js - Syntax highlighting for the Web --> + <!-- Add jQuery library --> + <script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script> + + <!-- hightlight.js - Syntax highlighting for the Web --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.1/styles/default.min.css"> - <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.1/highlight.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.1/highlight.min.js"></script> - <style type="text/css"> - @font-face { + <style type="text/css"> + @font-face { font-family: 'grixel_acme_7_wide_xtnd'; - src: url('../../font/acme_7_wide_xtnd.eot'); - src: url('../../font/acme_7_wide_xtnd.eot?#iefix') format('embedded-opentype'), - url('../../font/acme_7_wide_xtnd.woff') format('woff'), - url('../../font/acme_7_wide_xtnd.ttf') format('truetype'); - font-weight: normal; - font-style: normal; - font-size-adjust:0.49; - } + src: url('../../font/acme_7_wide_xtnd.eot'); + src: url('../../font/acme_7_wide_xtnd.eot?#iefix') format('embedded-opentype'), + url('../../font/acme_7_wide_xtnd.woff') format('woff'), + url('../../font/acme_7_wide_xtnd.ttf') format('truetype'); + font-weight: normal; + font-style: normal; + font-size-adjust:0.49; + } #eximage { width: 802px; height: 452px; text-align: center; } - #eximage img { margin: 0 auto; border: 1px solid; border-color: black; } + #eximage img { margin: 0 auto; border: 1px solid; border-color: black; } #eximage canvas { position: relative; top: 1px; left: 1px; border: 1px solid red; background: black; } pre { width: 802px!important;} - pre code{ border: 1px solid; border-color:#b0b0b0; height:auto; } - .exdownbtn{ margin-right: 20px; width:220px; height:30px; float:left; position: relative; cursor:pointer; font-weight:bold; font-size:10px; - line-height:30px; text-align: center; border-width:5px; background-color:#e1e1e1; color:#5c5a5a; - border:4px solid #898888; font-family: grixel_acme_7_wide_xtnd, Courier New, Verdana, Arial;} - #exdowncode .exdownbtn:hover{background-color:#f0d6d6; color:#c55757; border:4px solid #e66666;} + pre code{ border: 1px solid; border-color:#b0b0b0; height:auto; } + .exdownbtn{ margin-right: 20px; width:220px; height:30px; float:left; position: relative; cursor:pointer; font-weight:bold; font-size:10px; + line-height:30px; text-align: center; border-width:5px; background-color:#e1e1e1; color:#5c5a5a; + border:4px solid #898888; font-family: grixel_acme_7_wide_xtnd, Courier New, Verdana, Arial;} + #exdowncode .exdownbtn:hover{background-color:#f0d6d6; color:#c55757; border:4px solid #e66666;} #exdownexec .exdownbtn:hover{background-color:#bedce8; color:#417794; border:4px solid #5d9cbd;} .fancybox-wrap fancybox-desktop fancybox-type-iframe fancybox-opened { width: 860px!important;} .fancybox-inner { width: 850px!important; } .fancybox-iframe { width: 830px!important; } - </style> - - <script type="text/javascript"> - $(document).ready(function() { + </style> + + <script type="text/javascript"> + $(document).ready(function() { var mainUrl = $(location).attr('href'); var name = mainUrl.slice(mainUrl.indexOf('=') + 1); @@ -68,10 +68,10 @@ $('#eximage img').attr('src', imgUrl); - $.get(srcUrl, function(data) { - $('pre code').text(data); - $('pre code').each(function(i, e) {hljs.highlightBlock(e)}); - }, 'text'); + $.get(srcUrl, function(data) { + $('pre code').text(data); + $('pre code').each(function(i, e) {hljs.highlightBlock(e)}); + }, 'text'); // Quick hack for some examples not working on web if (name == "example_to_avoid") @@ -94,8 +94,8 @@ // Run emscripten example $.getScript(jsUrl, function() {}); } - }); - </script> + }); + </script> <script type='text/javascript' src="https://cdn.jsdelivr.net/gh/eligrey/FileSaver.js/dist/FileSaver.min.js"> </script> <script type='text/javascript'> function saveFileFromMEMFSToDisk(memoryFSname, localFSname) // This can be called by C/C++ code @@ -114,9 +114,9 @@ saveAs(blob, localFSname); } </script> - </head> - - <body> + </head> + + <body> <div class="emscripten"> <progress value="0" max="100" id="progress" hidden=1></progress> </div> @@ -126,7 +126,7 @@ <!--<textarea id="output" rows="8"></textarea>--> - <pre><code class="cpp"></code></pre> + <pre><code class="cpp"></code></pre> <script type='text/javascript'> //var statusElement = document.getElementById('status'); @@ -214,16 +214,16 @@ <!--<script async type="text/javascript" src="../examples/web/core_basic_window.js"></script>--> - <!-- Google Analytics tracking code --> - <script> - (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ - (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), - m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) - })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); + <!-- Google Analytics tracking code --> + <script> + (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ + (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) + })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); - ga('create', 'UA-45733555-1', 'raylib.com'); + ga('create', 'UA-45733555-1', 'raylib.com'); ga('require', 'linkid', 'linkid.js'); - ga('send', 'pageview'); - </script> - </body> + ga('send', 'pageview'); + </script> + </body> </html>
\ No newline at end of file |
