Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <head>
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <!--==============レイアウトを制御する独自のCSSを読み込み===============-->
  <link rel="stylesheet" type="text/css" href="https://assets.codepen.io/6329135/reset.css">
</head>

<body>
  <header id="header">
    <h1>WEB先案内の名言コレクション</h1>
  </header>
  <p class="caution">ページ内リンクをクリックすると<br>それぞれの場所に移動します<br>↓ ↓ ↓</p>
  <main>
    <ul id="page-link">
      <li><a href="#area-1">名言 1</a></li>
      <li><a href="#area-2">名言 2</a></li>
      <li><a href="#area-3">名言 3</a></li>
    </ul>
    <section class="area" id="area-1">
      <h2>名言 1</h2>
      <p>人はそれぞれ事情をかかえ、平然と生きている</p>
      <p>ベストを尽くして失敗したら、ベストを尽くしたってことさ</p>
      <p>いちばんいけないのはじぶんなんかだめだと思いこむことだよ</p>
      <p>この世に生を受けたこと。それ自体が最大のチャンスではないか</p>
      <!--/area1-->
    </section>
    <section class="area" id="area-2">
      <h2>名言 2</h2>
      <p>ろくな晩じゃねぇや。寝ちまえ、寝ちまえ。寝て起きりゃ別の日だ</p>
      <p>世の中ってオレより頭のいい人のほうが多いんだ</p>
      <p>何かを捨てないと前に進めない</p>
      <p>弱気は最大の敵</p>
      <!--/area2-->
    </section>
    <section class="area" id="area-3">
      <h2>名言 3</h2>
      <p>いつか、必ず、チャンスの順番が来ると信じなさい</p>
      <p>前向きにもがき苦しむ経験は、すぐに結果に結びつかなくても、必ず自分の生きる力になっていく</p>
      <p>「ゴールは遠いなぁ」と、がっかりするのも道のりです</p>
      <p>「負けたことがある」というのが いつか 大きな財産になる</p>
      <!--/area3-->
    </section>
    <!--/main-->
  </main>

  <footer id="footer">
    <p id="page-top"><a href="#">Page Top</a></p>
    <small>&copy; copyright.</small>
  </footer>

  <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
</body>
              
            
!

CSS

              
                @charset "utf-8";

/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a {
  background: #942d2f;
  display: block;
  padding: 20px;
  width: 100%;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*========= レイアウトのためのCSS ===============*/

body {
  width: 100%;
  height: 100vh;
  vertical-align: middle;
}

h1 {
  font-size: 1.2rem;
}

h2 {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 30px 0;
}

p {
  margin-top: 20px;
}

small {
  background: #333;
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px;
}

#header {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

section {
  padding: 15vh 30px;
}

section:nth-child(2n) {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  background-image: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 5%,
    rgba(252, 225, 208, 1) 15%,
    rgba(255, 173, 214, 1) 50%,
    rgba(162, 186, 245, 0.8) 80%,
    rgba(255, 255, 255, 1) 95%
  );
}

.caution {
  color: red;
  text-align: center;
  font-size: clamp(12px, 2.5vw, 1.2rem);
  font-weight: bold;
  white-space: nowrap;
}

#page-link {
  display: flex;
  justify-content: center;
  padding: 20px;
}

#page-link li {
  list-style: none;
}

#page-link li a {
  color: #333;
  padding: 0 20px;
  text-decoration: none;
}

#page-link li a::before {
  content: "▼";
  font-size: 0.8rem;
  padding: 0 10px 0 0;
  color: #ccc;
}

#footer {
  position: relative;
  z-index: 2;
}

              
            
!

JS

              
                // #page-linkの#area-*をクリックした際の設定
$('#page-link a[href*="#"]').click(function () {
  var elmHash = $(this).attr("href"); //ページ内リンクのHTMLタグhrefから、リンクされているエリアidの値を取得
  var pos = $(elmHash).offset().top; //idの上部の距離を取得
  $("body,html").animate({ scrollTop: pos }, 1500, "easeOutCirc"); //取得した位置にスクロール。500の数値が大きくなるほどゆっくりスクロール
  return false;
});

// #page-topをクリックした際の設定
$("#page-top").click(function () {
  $("body,html").animate(
    {
      scrollTop: 0 //ページトップまでスクロール
    },
    1500,
    "easeOutQuint"
  ); //ページトップスクロールの速さ※数字が大きいほど遅くなる, easingプラグインでアニメーション速度に変化
  //linear、swing、jswing、easeInQuad、easeOutQuad、easeInOutQuad、easeInCubic、easeOutCubic、easeInOutCubic、easeInQuart、easeOutQuart、easeInOutQuart、easeInQuint、easeOutQuint、easeInOutQuint、easeInSine、easeOutSine、easeInOutSine、easeInExpo、easeOutExpo、easeInOutExpo、easeInCirc、easeOutCirc、easeInOutCirc、easeInElastic、easeOutElastic、easeInOutElastic、easeInBack、easeOutBack、easeInOutBack、easeInBounce、easeOutBounce、easeInOutBounceなどから選択可能
  return false; //リンク自体の無効化
});

              
            
!
999px

Console