Do cái này mình demo trong iframe nên nó không full màn hình.

CSS:

div.lb {
display: none;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
height: 100%;
width: 100%;
text-align: center;
background: url('screen.png');
}
div.lb:target {
display: block;
}
 
/** IE không hỗ trợ :target, nên ở đây dùng CSS expressions **/
div.lb {
display: expression((document.location.toString().split('#').slice(1) == this.id)?'block':'none');
}