Topic: Not sure what I'm doing wrong... [SOLVED]
Here's the code:
<!DOCTYPE html>
<html>
<head><style type="text/css">.fade {
-webkit-animation: fadein 20s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 20s; /* Firefox < 16 */
-ms-animation: fadein 20s; /* Internet Explorer */
-o-animation: fadein 20s; /* Opera < 12.1 */
animation: fadein 20s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
.lw { font-size: 60px; }
#partytext{
position: absolute;
left:50%;
right: 50%;
margin-left: -25%;
margin-right: -25%;
margin-top: auto;
margin-bottom: auto;
width: 50%;
top: 15%;
bottom: 15%;
}
@-webkit-keyframes infinite-spinning {
from {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
animation-delay: 30s;
}
}
#snake1{
position: absolute;
left:50%;
right: 50%;
margin-left: -40%;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
top: 15%;
bottom: 15%;
-webkit-animation: infinite-spinning 20s infinite linear;
-moz-animation: infinite-spinning 20s infinite linear;
width: 80%;
opacity: 0.35;
}
#snake2{
position: absolute;
left:50%;
right: 50%;
margin-left: -40%;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
top: 15%;
bottom: 15%;
-webkit-animation: infinite-spinning 15s infinite linear;
-moz-animation: infinite-spinning 20s infinite linear;
animation-delay: 30s;
width: 80%;
opacity: 0.20;
}
#snake3{
position: absolute;
left:50%;
right: 50%;
margin-left: -40%;
margin-right: auto;
margin-top: auto
;
margin-bottom: auto;
top: 15%;
bottom: 15%;
-webkit-animation: infinite-spinning 10s infinite linear;
-moz-animation: infinite-spinning 20s infinite linear;
animation-delay: 30s;
width: 80%;
opacity: 0.40;
}
-moz-animation: infinite-spinning 20s infinite linear;
animation-delay: 30s;
width: 50%;
opacity: 0.70;
}
#snake3{
position: absolute;
left:50%;
margin-left: -25%;
-webkit-animation: infinite-spinning 10s infinite linear;
-moz-animation: infinite-spinning 20s infinite linear;
animation-delay: 30s;
width: 50%;
opacity: 0.90;
}
@media(max-width:500px){
#snakes{
width: 300px;
}
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<title>Weird Touch</title>
<style>
body {background-color:#FFFFFF}
h1 {color:white}
p {color:white}
</style>
</head>
<body>
<img id="snake1" src="http://weirdtouch.com/whitesnake1.png" alt="" class="fade">
<img id="snake2" src="http://weirdtouch.com/blacksnake1.png" alt="" class="fade">
<img id="snake3" src="http://weirdtouch.com/whitesnake1.png" alt="" class="fade">
<img id="partytext" src="http://weirdtouch.com/dancepartytext.png" alt="" class="fade">
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId: "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "rgba(0,0,0,1)"
});
</script>
<div id="juicebox-container">
<!-- Image gallery content for non-javascript devices -->
<noscript>
<h1></h1>
<p></p>
<p><img src="images/Weird Touch 25Jan Web -03557.jpg" title="Weird Touch 25Jan Web -03557" alt="" /><br>Weird Touch 25Jan Web -03557 </p>
<p><img src="images/Weird Touch 25Jan Web -03566.jpg" title="Weird Touch 25Jan Web -03566" alt="" /><br>Weird Touch 25Jan Web -03566 </p>
<p><img src="images/Weird Touch 25Jan Web -03575.jpg" title="Weird Touch 25Jan Web -03575" alt="" /><br>Weird Touch 25Jan Web -03575 </p>
<p><img src="images/Weird Touch 25Jan Web -03577.jpg" title="Weird Touch 25Jan Web -03577" alt="" /><br>Weird Touch 25Jan Web -03577 </p>
<p><img src="images/Weird Touch 25Jan Web -03588.jpg" title="Weird Touch 25Jan Web -03588" alt="" /><br>Weird Touch 25Jan Web -03588 </p>
<p><img src="images/Weird Touch 25Jan Web -03590.jpg" title="Weird Touch 25Jan Web -03590" alt="" /><br>Weird Touch 25Jan Web -03590 </p>
<p><img src="images/Weird Touch 25Jan Web -03599.jpg" title="Weird Touch 25Jan Web -03599" alt="" /><br>Weird Touch 25Jan Web -03599 </p>
<p><img src="images/Weird Touch 25Jan Web -03610.jpg" title="Weird Touch 25Jan Web -03610" alt="" /><br>Weird Touch 25Jan Web -03610 </p>
<p><img src="images/Weird Touch 25Jan Web -03658.jpg" title="Weird Touch 25Jan Web -03658" alt="" /><br>Weird Touch 25Jan Web -03658 </p>
<p><img src="images/Weird Touch 25Jan Web -03672.jpg" title="Weird Touch 25Jan Web -03672" alt="" /><br>Weird Touch 25Jan Web -03672 </p>
<p><img src="images/Weird Touch 25Jan Web -03532.jpg" title="Weird Touch 25Jan Web -03532" alt="" /><br>Weird Touch 25Jan Web -03532 </p>
</noscript>
</div>
<!--END JUICEBOX EMBED-->
<p class="lw"></p>
</body>
Any and all help would be very much appreciated! Thank you in advance!