footer.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <!DOCTYPE html>
  2. <!--
  3. * Copyright (c) 2021, 2024, 5 Mode and other contributors
  4. * Released under the MIT license
  5. *
  6. * This file is part of SqueeJS.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
  9. * and associated documentation files (the "Software"), to deal in the Software
  10. * without restriction, including without limitation the rights to use, copy, modify, merge, publish,
  11. * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
  12. * Software is furnished to do so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included in all copies or
  15. * substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  18. * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  19. * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  20. * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  21. * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  22. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23. *
  24. * footer.html
  25. *
  26. * SqueeJS Doc and examples for the Footer functionalities.
  27. *
  28. * @author Daniele Bonini <my25mb@aol.com>
  29. * @copyrights (c) 2016, 2024, 5 Mode
  30. * @license https://opensource.org/licenses/MIT
  31. * -->
  32. <html>
  33. <head>
  34. <title>Footer: doc and examples.</title>
  35. <meta charset="UTF-8">
  36. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  37. <link rel="shortcut icon" href="favicon.ico" />
  38. <meta name="description" content="Welcome to Squeejs! Let everyone squeez its javascript code."/>
  39. <meta name="author" content="5 Mode"/>
  40. <meta name="robots" content="index,follow"/>
  41. <meta name="keywords" content="Squeejs,javascript,framework,squeejs.com,MIT,license,5 Mode"/>
  42. <script src="/js/common.js" type="text/javascript"></script>
  43. <script src="/js/squeejs.js?r=3445566" type="text/javascript"></script>
  44. <link href="/css/style.css?v=1631827555" type="text/css" rel="stylesheet">
  45. <link href="/css/squeejs.css?v=1631827556" type="text/css" rel="stylesheet">
  46. </head>
  47. <body style="border:0px solid lightgray; padding:20px; margin-right:20px;">
  48. <div id="content" style="height:1130px;">
  49. <a href="/"><img src="/res/logo.png" style="width:300px;background:#FFFFFF;border:1px solid gray;"></a><br>
  50. <br><br><br>
  51. <h2>FOOTER</h2>
  52. Here the Javascript code available to be inserted in your web page to implement a <i>footer</i>.<br>
  53. <br>
  54. Please check the <b>context</b> of implementation for each of the functions.<br>
  55. <br><br>
  56. <h2>Code:</h2>
  57. <pre>
  58. /**
  59. * SQJS.createFooter
  60. *
  61. * create the tag DIV for the footer
  62. *
  63. * Context:
  64. * - Call it in the body of your webpage
  65. *
  66. * @param {string} html, the html to insert as footer
  67. * @param {string} BG, the background of the footer
  68. * @param {string} align, the banner horizontal alignment [left|middle|right]
  69. * @param {string} display, the banner display [fixed|relative|none]
  70. * @returns {string} the id of the footer DIV element
  71. *
  72. * This function is part of SqueeJS.
  73. */
  74. <b>function SQJS.createFooter(html, BG, align, display){};</b>
  75. </pre>
  76. <br><br>
  77. <h2>Usage example:</h2>
  78. <pre style="background:lightyellow;width:100%;white-space: pre-wrap;">
  79. &lt;script&gt;
  80. var myNewFooter = SQJS.createFooter("&lt;b&gt;Some rights reserved.&lt;/b&gt;","lightgray","right","relative");
  81. &lt;/script&gt;
  82. </pre>
  83. <br><br>
  84. <h2>How it looks like:</h2>
  85. <script>
  86. var myNewFooter = SQJS.createFooter("&nbsp;<a href='https://5mode.com/dd.html'>Disclaimer</a>&nbsp;&nbsp;A <a href='http://5mode.com'>5 Mode</a> project and <a href='http://demo.5mode.com'>WYSIWYG</a> system. Some rights reserved.","lightgray","right","relative");
  87. </script>
  88. </div>
  89. <!-- Yandex.Metrika counter -->
  90. <script type="text/javascript" >
  91. (function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
  92. m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
  93. (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
  94. ym(90317440, "init", {
  95. clickmap:true,
  96. trackLinks:true,
  97. accurateTrackBounce:true
  98. });
  99. </script>
  100. <noscript><div><img src="https://mc.yandex.ru/watch/90317440" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
  101. <!-- /Yandex.Metrika counter -->
  102. </body>
  103. </html>