sikaku

response

message

  • freepage02の最初に表示されるトップ部分のみを使用したいがスクロールがでてしまう。

response

はじめまして、メールありがとうございます。 お返事遅くなりまして申し訳ございません。

いただきました使用ページのurlですが、ページ自体存在しないようで、おそらく時間経過に依るものと思われる点を重ねてお詫び申し上げます。

トップ部分が「header,navのみの使用」という事で良ければ、下記でお試しいただければと思います。

code edit

code

head
  1. <style type="text/css">
  2. /* === import === */
  3. @import url(https://fonts.googleapis.com/css?family=Ubuntu);
  4. /* === reset & base === */
  5. * ,*:before ,*:after {
  6. box-sizing: border-box;
  7. position: relative;
  8. margin: 0;
  9. padding: 0;
  10. outline: 0;
  11. border: none;
  12. word-break: break-all;
  13. font-family: inherit;
  14. font-size: inherit;
  15. line-height: inherit;
  16. font-style: normal;
  17. font-weight: normal;
  18. letter-spacing: 0.1em;
  19. -webkit-appearance: none;
  20. -webkit-tap-highlight-color: rgba(0,0,0,0);
  21. }
  22. img {
  23. max-width: 100%;
  24. height: auto;
  25. }
  26. ul ,ol { list-style-type: none;}
  27. /* === layout === */
  28. /* 全体 */
  29. body {
  30. background-color: #333333;
  31. background-image: url(背景URL);
  32. background-repeat: no-repeat;
  33. background-attachment: fixed;
  34. background-position: 50% 0;
  35. background-size: 1px 1px;
  36. color: #000000;
  37. font-family: 'Ubuntu','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo','Osaka','MS Pゴシック', 'MS PGothic',sans-serif;
  38. font-size: 10px;
  39. line-height: 2.4em;
  40. }
  41. body:before {
  42. content: '';
  43. position: fixed;
  44. top: 0; bottom: 0;
  45. left: 0; right: 0;
  46. z-index: -1;
  47. display: block;
  48. background-image: inherit;
  49. background-size: cover;
  50. }
  51. ::-webkit-scrollbar {
  52. width: 6px;
  53. }
  54. ::-webkit-scrollbar-thumb {
  55. border-radius: 3px;
  56. background-color: #000000;
  57. }
  58. a {
  59. text-decoration : none;
  60. color: #000000;
  61. border-bottom: solid 2px #cccccc;
  62. }
  63. a:hover {
  64. border-bottom-color: #000000;
  65. }
  66. /* コンテンツ部分 */
  67. #layout {
  68. margin: 0 auto;
  69. padding-top: 30vh;
  70. }
  71. header {
  72. color: #ffffff;
  73. font-size: 1.6em;
  74. }
  75. header > * {
  76. padding: 5px;
  77. padding-left: 40px !important;
  78. }
  79. header h1 {
  80. display: inline-block;
  81. padding: 10px;
  82. background-color: rgba(0,0,0,0.8);
  83. font-size: 1.5em;
  84. }
  85. nav {
  86. position: fixed;
  87. bottom: 0;
  88. left: 0; right: 0;
  89. z-index: 999;
  90. padding: 6px 10px;
  91. font-size: 1.2em;
  92. text-align: right;
  93. background-color: rgba(255,255,255,0.9);
  94. }
  95. nav ul li {
  96. display: inline;
  97. padding: 0 10px;
  98. }
  99. nav ul li + li {
  100. border-left: solid 2px #cccccc;
  101. }
  102. nav a {
  103. border-bottom: none;
  104. }
  105. @media screen and (min-width: 501px) and (min-height: 501px) {
  106. body { font-size: 14px;}
  107. }
  108. @media screen and (min-width: 501px) and (orientation:landscape) {
  109. #layout { width: 500px;}
  110. body:before ,nav {
  111. left: 50%; right: auto;
  112. width: 500px;
  113. margin-left: -250px;
  114. }
  115. }
  116. @media all and (-ms-high-contrast: none){
  117. body { background-size: 500px auto !important; }
  118. body:before { display: none !important; }
  119. }
  120. /*
  121. freepage 02 ver(1.0.2)
  122. Template by http://nanos.jp/sikaku0/ */
  123. </style>
body
  1. <div id="layout">
  2. <header>
  3. <h1>free page 02</h1>
  4. <p class="sub">var 1.0.1</p>
  5. </header>
  6. <nav>
  7. <ul>
  8. <li><a href="#info">info</a></li>
  9. <li><a href="#main">main</a></li>
  10. <li><a href="#mail">mail</a></li>
  11. <li><a href="#sample">sample</a></li>
  12. </ul>
  13. </nav>
  14. </div>
nav不要の場合の編集

▽head

  • 削除
  • ,nav削除

▽body

  • 削除