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>
  <!-- jQuery -->
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>

<body>
  
  <!-- 全画面広告 -->
  <div class="screen-ad">
    <a href="https://give-shot.jp/tokyocss/" target="_blank" rel="noopener noreferrer"></a>
  </div>
  <!-- ここまで -->
  
<!-- 以下装飾 -->
  <p>某有名動画サイトなどでも使われている強制クリック広告。<br>
  一度クリックするまでは画面全体がリンクになっており、その間はサイト内で他のアクションが取れない。<br>もちろん、広告を踏むまでこの<a href="https://www.google.com/?hl=ja">Googleへのリンク</a>もクリックできない</p>
  <p><strong>アクセシビリティを完全無視した悪魔の広告</strong>である</p>
  <p>実際のところクリック率はかなり上がるので、クリックさせてcookieを付与するなどの使い道はあるが、離脱率やASPからの提携解除などのリスクあり。<br>広告リンクに使用する際は許可しているASP(滅多にないと思うが)のリンクだけにしておこう。
  </p>
</body>
              
            
!

CSS

              
                /*** 全画面広告 ***/
.screen-ad{
  display: none; /*標準時は非表示*/
  position: fixed; /*画面に固定*/
  top: 0;
  left: 0;
  width: 100vw; /*画面幅*/
  height: 100vh; /*画面の高さ*/
  z-index: 999;
}

/*** リンクを親要素いっぱいに広げる ***/
.screen-ad a{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*** 一定時間後 ***/
.screen-ad.active{
  display: block; /*表示*/
}

/*** サンプル用装飾 ***/
body{
  padding: 1rem;
}
              
            
!

JS

              
                <!-- 5秒後に.activeを付与して実行 -->
setTimeout(function() {
		$(".screen-ad").toggleClass("active");
	}, 5000);

<!-- クリック後は.activeクラスを削除 -->
$('.screen-ad').on('click', function() {
    $(this).removeClass("active");
});
              
            
!
999px

Console