tasarımı vs ayarlamadım siz kendinize göre bir sayfa oluşturabilirsiniz.

html kodları




<script>
$(".close").click(function() {
$(".privacy.info").fadeOut();
$(".privacy.bg").fadeOut();
setCookie("privacy", "1", 365);
});
function setCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else var expires = ""; document.cookie = name+"="+value+expires+"; path=/"; }
</script>


css kodları

.privacy.info {
position: fixed;
top: 50%;
left: 50%;

padding: 10px;
border-radius: 4px;

font-size: 25px;
width: 640px;
margin-left: -330px;
z-index: 99999;
}

.privacy.info .info {
position: relative;
}

.privacy.bg {
position: fixed;
top:0;
left:0;
background: rgba(255, 255, 255, 0.87) none repeat scroll 0% 0%;
width: 100%;
height: 100%;
z-index:99998;
}

html kodunu mobil site indexinin en altına yapıştırın.