nAbend.
Ich habe ein kleines Problem und kann mir aber nicht erklaeren, woran es liegen koennte.
Und zwar habe ich eine kleine Placeholderseite gebastelt.
Diese beinhaltet nur ein Bild und ein kleines Impressum.
Beides ist mit jQuery ein wenig aufgehuebscht.
Allerdings wird das Impressum nicht immer angezeigt.
Eventuell hat ja jemand 'ne Idee, woran es liegen koennte?
[[Only registered and activated users can see links. Click Here To Register...]]
HTML
CSS
jQuery
~
Ich habe ein kleines Problem und kann mir aber nicht erklaeren, woran es liegen koennte.
Und zwar habe ich eine kleine Placeholderseite gebastelt.
Diese beinhaltet nur ein Bild und ein kleines Impressum.
Beides ist mit jQuery ein wenig aufgehuebscht.
Allerdings wird das Impressum nicht immer angezeigt.
Eventuell hat ja jemand 'ne Idee, woran es liegen koennte?
[[Only registered and activated users can see links. Click Here To Register...]]
HTML
Code:
<div id="placeholder"><img src="img/wip.png" /></div> <div id="impressum"> <p>Andreas CLTrec Grafen<br> Dölitzer Straße 45<br> 04277 Leipzig<br> <br> +49 163 / 73 12 262<br> +49 4341 / 99 03 105<br> <br> info[at]cltrec.de </p> </div>
Code:
body {
background: url(img/noise.png) #e7e7e7;
}
p {
margin: 0px;
font-family: "mc";
opacity: 0.1;
font-size: 10px;
}
img {
position: absolute;
top: 40%;
left: 50%;
margin-top: -250px;
margin-left: -350px;
}
#placeholder {
width:700px;
height:500px;
display:none
background-color:transparent;
}
#impressum {
position: absolute;
top:60%;
left:50%;
width: 200px;
margin-left: -100px;
text-align:center;
background-color:transparent;
display: none;
}
@font-face {
font-family:"mc";
src:url(font/minecraftia.eot?) format("eot"),
url(font/minecraftia.woff) format("woff"),
url(font/minecraftia.ttf) format("truetype"),
url(font/minecraftia.svg#Minecraftia) format("svg");
font-weight:normal;font-style:normal;
}
Code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#placeholder").fadeIn(3000);
});
$(document).ready(function(){
$("#impressum").slideDown(3000);
});
</script>