Guess what?! Usually I'm not a big TV watcher- but I've been kinda bored lately and just discovered- TV rocks!! Disney, Discovery, Animal Planet, nickelodeon, and Cartoon Network!! Disney is what I usually end up watching- Discovery and Animal Planet are interesting, but only certain shows are really interesting- because it is the one that usually has good shows on. Nickelodeon and Cartoon Network..... well..... only a very select few shows are good..... and the rest STINK, in my opinion. What do you think? Oh! Oh! I have an idea! How 'bout you comment your favorite TV channel and the reason why you like it. That would be super COOL! I just realized- I haven't got of topic yet! Let's do that now :D
New Blogger
This might be OLD news, but this is new to me. Blogger looks TOTALLY different. It's.... AMAZING! This is my first post with the new blogger..... I do wonder how it'll work out, configuring all the labels and stuff in this new blogger. Hey! Another idea! 1-10, how much to you like the new blogger compared to the previous blogger??? Include that in your comment, too!
Where is the world is Horsenkat?
Guess what! Guess what! I am no longer where I usually am. Because it's kinda a vacationy time, I've been BUSY! With fun stuff, of course. So! So! I'm gonna give you a few hints and I want you to figure out the state I'm in. Or something like it. BUT. I won't give them out straight foward. I'll drop hints as I go! Won't that be COOL??? If you figure out some hints that I dropped, you might want to comment- I suggest you people work toghether on this! I plan to make it HARD. K?
Last Bits
Hey! In your comment, I have one last thing I want you to do. (or maybe two or three or four.... I really have no idea. Planning for this post=0) In your comment, I want you to post where you found out about this blog. If you don't include it, that's understandable.
Oka- I just realized something. Look. At. The. Size. Of. This. Post. It's gigantic! Mammoth (ok maybe I'm exaggerating a bit)! Any other word for amazingly big! So. It. Ends. Now. See ya! :D
Testing, Testing
I'm going to try an HTML script. Did it work? Did it work?
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css">
img#sun { position:absolute; left:0; top:100px; }
img#pig { position:absolute; left:600; top:100px; }
img#heart { position:absolute; left:500; top:300px; visibility:hidden;}
img#baby { position:absolute; left:500; top:300px; visibility:hidden;}
img#baby2 { position:absolute; left:700; top:300px;visibility:hidden;}
img#babyup { position:absolute; left:600; top:300px;visibility:hidden;}
</style>
<script>
$(document).ready(function() {
$("#animate").click(function() {
$("#sun").animate({ left:"400px"}, 3000);
setTimeout(function() { $("#heart").css("visibility", "visible");}, 3010);
setTimeout(function() { $("#baby").css("visibility", "visible");}, 6010);
setTimeout(function() { $("#heart").css("visibility", "hidden");}, 6010);
setTimeout(function() { $("#baby2").css("visibility", "visible");}, 6110);
setTimeout(function() { $("#babyup").css("visibility", "visible");}, 6210);
});
});
</script>
</head>
<body>
<button id="animate">Animate</button>
<img width="200px" height="200px" id="sun" src="pig 1.jpg"></img>
<img width="200px" height="200px" id="pig" src="pig 2.jpg"></img>
<img width="200px" height="200px" id="heart" src="heart.jpg"></img>
<img width="100px" height="100px" id="baby" src="babypig.jpg"></img>
<img width="100px" height="100px" id="baby2" src="baby.jpg"></img>
<img width="100px" height="100px" id="babyup" src="babypig1.jpg"></img>
</body>
</html>