index.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel="stylesheet" href="../style.css#" type="text/css" />
  7. <title>Toolbar customization</title>
  8. <script type="text/javascript">
  9. function findLang(){
  10. let href = location.href;
  11. for(let i=href.length-1;i>0;i--){
  12. if('/'==href.charAt(i) && '/'==href.charAt(i-3))
  13. return i;
  14. }
  15. return 0;
  16. }
  17. function nav2(page){
  18. let i = findLang();
  19. location.href = location.href.substring(0,i+1)+page;
  20. }
  21. function nav2Lang(lang){
  22. let i = findLang();
  23. let href = location.href;
  24. location.href = location.href.substring(0,i-2)+lang+location.href.substring(i);
  25. }
  26. </script>
  27. </head>
  28. <body>
  29. <header class='header'>
  30. <a class="logo" href="javascript:void(0)" onclick="return nav2('index.html#')">Home</a> <a class="logo" href="javascript:void(0)" onclick="return nav2('tags/index.html#')">Tags</a>
  31. <a class="logo" href="javascript:void(0)" onclick="return nav2Lang('zh')">简体中文</a>
  32. <nav>
  33. </nav>
  34. </header>
  35. <br />
  36. <div class="container">
  37. <h1 class="title">Toolbar customization
  38. <br>
  39. <span class="subtitle"></span>
  40. </h1>
  41. <ul class="tags">
  42. </ul>
  43. <p>If subfolder &quot;icon&quot; exists, then files named as &quot;0&quot;,&quot;1&quot;,&quot;2&quot;...<br>
  44. are used for icons in the bottom toolbar. file &quot;0&quot; to replace the left arrow button, &quot;1&quot; for right arrow button, &quot;2&quot; for the setting button,&quot;3&quot; for the home screen button,...</p>
  45. <p>If a new button is defined (file name &quot;20&quot; exists), uweb also supports VectorDrawable with &quot;android compiled XML&quot; format. All icon files must be either all compiled VectorDrawables or common image formats.</p>
  46. <p>Note: The refresh and tab manager button can not be redefined.</p>
  47. </div>
  48. <p>Last Modified: 2 April 2024<br>
  49. add flg for not following sys night mode<br>
  50. <pre></pre>
  51. </p>
  52. <script id='jsgiscus'
  53. src='https://giscus.app/client.js'
  54. data-repo="torappinfo/uweb"
  55. data-repo-id="MDEwOlJlcG9zaXRvcnkzMDIyMDU3MjE="
  56. data-category="Announcements"
  57. data-category-id="DIC_kwDOEgNLGc4CQjsh"
  58. data-mapping="title"
  59. data-strict="0"
  60. data-reactions-enabled="1"
  61. data-emit-metadata="0"
  62. data-input-position="top"
  63. data-theme="light"
  64. data-lang="en"
  65. data-loading="lazy"
  66. crossorigin="anonymous" async>
  67. </script>
  68. <footer class="site-footer">
  69. <div class="container">
  70. &copy; 2018-2024 Richard H. Cao
  71. </div>
  72. </footer>
  73. <!-- This document is licensed under the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is available at <https://www.gnu.org/licenses/>. -->
  74. </body>
  75. </html>