<script type='text/javascript'>
$(document).ready(function () {
var fenster = $(location).attr('href');
if (fenster == 'http://www.cyrill-kuhlmann.de/index.php/') {
$('#intro-page').show(function () {
$(this).click(function () {
$(this).fadeOut(250);
});
});
}
});
</script>
I am facing an issue with displaying a div
in full-screen as an intro. The problem is that instead of displaying correctly, it appears in the top left corner and gradually grows to full-screen size. What could be causing this unexpected behavior?