I have a cat named Mittens. Now that you are bonded with it please login or register so that I dont have to eat him for dinner.

Current time: 07-29-2010, 10:50 PM Hello There, Guest! (LoginRegister)

This ad will disappear when you log in.


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I NEED TEH HALP!!!11(HTML AGIN)
Author Message
ALN-47 Offline
Member
*

Posts: 149
Joined: Jul 2009
Post: #1
Information I NEED TEH HALP!!!11(HTML AGIN)
Hey guys umm im remaking my website(ya this time imm using zymic[dot]com) and i wanna place avesome things there. But idk the code and is it possible to make 2 of them:

1. I wanna post a youtube player on the website so it will play movies straight on it but i dnt have the right code, coudl yo tell me pl0x.


2. I placed windows there with images like miniatures of movies etc. but i want them to change whenever i enter the site of refresh it(f.e. i have a miniature of the gmod dumbass pack episode.1 but i want it to be ep.2 when i refresh it etc.) But idk is it possible and i dont have the code.
So please help me. Emot-ughh

Emot-psylonThe PsyminatorEmot-psylon
02-14-2010 02:22 PM
Find all posts by this user Quote this message in a reply
DiscoBiscuit Offline
Administrator
*****

Posts: 559
Joined: May 2009
Post: #2
RE: I NEED TEH HALP!!!11(HTML AGIN)
1. [Image: rhfjdjejdd.png]

2. I don't know what you're talking about.

[Image: oteyj7.png]
02-14-2010 02:47 PM
Visit this user's websiteFind all posts by this user Quote this message in a reply
ALN-47 Offline
Member
*

Posts: 149
Joined: Jul 2009
Post: #3
RE: I NEED TEH HALP!!!11(HTML AGIN)
(02-14-2010 02:47 PM)DiscoBiscuit Wrote:  1. [Image: rhfjdjejdd.png]

2. I don't know what you're talking about.
You know like in some websites therer are pictures of things. Well theres a code that makes the images change whenever its refreshed(or you enter agin)
Well i want to make this effect so you get prewiews on other movies whenever you enter.

Emot-psylonThe PsyminatorEmot-psylon
02-15-2010 07:07 AM
Find all posts by this user Quote this message in a reply
DiscoBiscuit Offline
Administrator
*****

Posts: 559
Joined: May 2009
Post: #4
RE: I NEED TEH HALP!!!11(HTML AGIN)
Oh ok

Code:
<!-- STEP ONE: Paste this code into the HEAD of your HTML document  -->

<HEAD>

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  jsCode.com -->
<!-- Web Site:  http://jscode.com -->
<script language="JavaScript">
<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = '100.jpg'
theImages[1] = '200.jpg'
theImages[2] = '300.jpg'
theImages[3] = '400.jpg'
theImages[4] = '500.jpg'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//-->
</script>
</HEAD>

Code:
<!-- STEP TWO: Copy this code into the BODY of your HTML document  -->

<BODY>

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  jsCode.com -->
<!-- Web Site:  http://jscode.com -->
<script language="JavaScript">
<!--
showImage();
//-->
</script>


<p><center>
<font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size:  2.02 KB -->

[Image: oteyj7.png]
02-15-2010 02:33 PM
Visit this user's websiteFind all posts by this user Quote this message in a reply
Post Reply