Skip to content

Instantly share code, notes, and snippets.

@ivon852
Last active July 17, 2023 05:34
Show Gist options
  • Select an option

  • Save ivon852/5ace230be2481c236a85e336c3e75ce3 to your computer and use it in GitHub Desktop.

Select an option

Save ivon852/5ace230be2481c236a85e336c3e75ce3 to your computer and use it in GitHub Desktop.
<style>
.form-name-popup{
color: white;
text-align: center;
position:fixed;
z-index: 9;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background:rgba(0,0,0,0.6);
overflow:scroll;
}
.form-name-popup-inner{
position: absolute;
width:100%;
height: 100%;
padding: 50px;
overflow:scroll;
}
.form-name-popup-close{
position:absolute;
z-index:999;
top:5px;
right:10px;
color:#fff;
}
button {
width: 100px;
height: auto;
}
</style>
<div id="popwindow" class="form-name-popup">
<div class="form-name-popup">
<p>
<text><b>金暴力SEX!年齡驗證</b></text>
</p>
<p>本頁面含有成人、暴力、血腥內容,請問您是否已成年?若您尚未成年,請點選「否」離開本頁面。若您已成年,亦不可將本頁面之內容派發、傳閱、出售、出租、交給或借予年齡未成年的人士瀏覽,或將本頁面內容向該人士出示、播放或放映。<br></p>
<text><b>Kane, Bouryoku, Sex! You must be 18+ years old to view this</b></text>
<br>This page contains adult, violent and gory content, are you an adult? If you are underage, please click "No" to leave this page. If you are an adult, you may not distribute, circulate, sell, rent, give or lend the contents of this page to anyone under the age of majority, or show, play or display the contents of this page to such person.</p>
<img src=/images/R-18_icon.svg alt="" width=200>
<button onclick="pass()">是 Yes</button>
<button onclick="notpass()">否 No</button>
</div>
</div>
<script>
if(document.cookie.includes("isadult=yes")){
pass();
}
else {
window.onscroll = function () { window.scrollTo(0, 0);};
}
function pass() {
document.getElementById("popwindow").style.display = "none";
window.onscroll = function () {};
document.cookie = 'isadult=yes; path=/; max-age=86400;';
}
function notpass() {
window.location.href="https://duckduckgo.com";
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment