Iframe play/pause emulator
HTML
<script type="text/javascript">
<!--
var RRReg_eventid=99710;
var RRReg_key="uXedD02ySk5D";
var RRReg_PreferredRegistration="single";
var RRReg_PreferredContest=0;
var RRReg_server="https://events2.raceresult.com";
-->
</script>
<script type="text/javascript" src="https://events2.raceresult.com/registration/init.js?lang=de"></script>
<style>
/* Add custom CSS here or elsewhere to change the design */
</style>
CSS
#iframe {
width: 500px;
height: 400px;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
#tooltip {
position: absolute;
top: 200px;
width: 100px;
height: 50px;
background: white;
z-index: 3;
text-align: center;
line-height: 2em;
}
#overlay {
width: 500px;
height: 400px;
position: absolute;
top: 0;
left: 0;
z-index: 2;
}
JavaScript
$("#overlay").click(function () {
$(this).hide();
$('#tooltip').toggle(
function(){
$('#another-element').show();
}
,
function(){
$('#another-element').hide();
}
);
setTimeout(function () {
$("#overlay").show();
}, 500);
});