Welcome, Guest.
Login
|
Register
Username:
Password:
Remember me:
Quote Changer Mysql,Js,Php
Please log in to post.
Watch thread
Unwatch thread
Started by
Chanishyy
06 Mar 2012 20:45
By
Chanishyy
(
154
)
On 06 Mar 2012 20:45
How do l make that quote changer like 3DHUb were the text dissapears and changes it?
Existance alludes
By
PasserByGuy
(
268
)
On 11 Mar 2012 01:37
Use a JS to create a var of random quotes, print a quote randomly from the array, and use an interval to refresh the quotes.
We've all grown up. Cheers.
By
M.J kInG
(
1331
)
On 12 Mar 2012 15:32
Here Example:
<script type="text/javascript">
var Quote;
Quote = new array(
'Hello there',
'My name is maleck',
'I rock 0-0'
);
setInterval("quoteSwitch(Quote);",18000);
window.onload=function(){
quoteSwitch(Quote);
}
function quoteSwitch(Quote){
quote=Math.floor(Math.random()*(quotes_array.length));
document.getElementById("quotes").innerHTML=quotes_array[quote];
}
Just uses id to call the function
Example:
<div id='qoutes'>
Example
</div>
A true developer
By
Chanishyy
(
154
)
On 15 Mar 2012 07:35
Yeah l mayde my own thanks :D
Existance alludes
Nintendo 3DS is ™ Nintendo Co. Ltd. This website is ©2009-2025 HullBreach Studios. All rights reserved.