ブラウザバック時に全画面でマスクページを表示させるスクリプト
表示させたい場所にスクリプトを読み込む
使用例:
WordPressに組み込むならheader.phpあたりをカスタマイズして
WEBページの
<script src="script.js"></script>
※ファイル名、ファイルパスは自分の環境に合わせて
使用例:index.php
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ブラウザバックで全画面広告表示</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
script.js
window.onload = function () {
history.pushState(null, null, window.location.href);
};
window.onpopstate = function () {
document.getElementById('fullscreen-ad').style.display = 'block';
history.pushState(null, null, window.location.href);
};
function closeAd() {
document.getElementById('fullscreen-ad').style.display = 'none';
}
CSSサンプル
#fullscreen-ad {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 1000;
color: white;
text-align: center;
padding-top: 20%;
font-size: 2em;
}
#close-ad {
cursor: pointer;
background-color: white;
color: black;
padding: 10px;
border-radius: 5px;
margin-top: 20px;
font-size: 0.8em;
}
スクリーンショット
注意点
このソースだと全ての「戻る」で全面広告が表示されるため、自サイト以外で条件分岐しないと回遊率が悪くなると思います。