<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Stillcetek &#187; Javascript</title>
	<atom:link href="http://www.stillcetek.com/category/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://www.stillcetek.com</link>
	<description>Blog Lukman Stillcetek, Delphi Tutorial, Php Tutorial, Article CSS, Mysql, Javascript Tutorial, MSSQL Server, Linux Ubuntu</description>
	<lastBuildDate>Fri, 23 Jul 2010 06:50:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML Rotator With Prototype &amp; Scriptaculous Effect</title>
		<link>http://www.stillcetek.com/2007-12-23/html-rotator-with-prototype-scriptaculous-effect.html</link>
		<comments>http://www.stillcetek.com/2007-12-23/html-rotator-with-prototype-scriptaculous-effect.html#comments</comments>
		<pubDate>Sun, 23 Dec 2007 04:03:34 +0000</pubDate>
		<dc:creator>Lukman</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.stillcetek.com/2007-12-23/html-rotator-with-prototype-scriptaculous-effect.html</guid>
		<description><![CDATA[Melanjutkan article HTML Rotator, yang ini akan lebih menarik karena diberi effect fade saat slidenya.
Untuk effect gunakan prototype.js dan Scriptaculous 
Ok See code below :

&#60;html&#62;
&#60;head&#62;&#60;title&#62;Cetek&#60;/title&#62;
&#60;style type="text/css"&#62;
img{
border:none;
}
&#60;/style&#62;

&#60;script src="js/scriptaculous/lib/prototype.js" type="text/javascript"&#62;&#60;/script&#62;
&#60;script src="js/scriptaculous/src/scriptaculous.js" type="text/javascript"&#62;&#60;/script&#62;
&#60;script type="text/javascript"&#62;

var content = new Array('&#60;img src="images/jseyes.gif"&#62;','&#60;img src="images/icon_ots.png"&#62;','&#60;img src="images/image1.png"&#62;');

var links = new Array('http://www.google.com','http://www.stillcetek.com','http://www.yahoo.com');

var contentStart = 0;
var contentCount = content.length;
var bannerSpeed  = 10;
var bannerDuration  = [...]]]></description>
			<content:encoded><![CDATA[<p>Melanjutkan article <a href="http://www.stillcetek.com/2007-12-23/html-rotator.html">HTML Rotator</a>, yang ini akan lebih menarik karena diberi effect fade saat slidenya.</p>
<p>Untuk effect gunakan <a href="http://www.prototypejs.org/">prototype.js</a> dan <a href="http://script.aculo.us/">Scriptaculous </a></p>
<p>Ok See code below :</p>
<pre>
&lt;html&gt;
&lt;head&gt;&lt;title&gt;Cetek&lt;/title&gt;
&lt;style type="text/css"&gt;
img{
border:none;
}
&lt;/style&gt;

&lt;script src="js/scriptaculous/lib/prototype.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script src="js/scriptaculous/src/scriptaculous.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;

var content = new Array('&lt;img src="images/jseyes.gif"&gt;','&lt;img src="images/icon_ots.png"&gt;','&lt;img src="images/image1.png"&gt;');

var links = new Array('http://www.google.com','http://www.stillcetek.com','http://www.yahoo.com');

var contentStart = 0;
var contentCount = content.length;
var bannerSpeed  = 10;
var bannerDuration  = 5.0;

function bannerRotator() {
var bannerRotasi = document.getElementById("bannerRotasi");
contentStart++;
if (contentStart == contentCount) {
contentStart = 0;
}
if(document.all){
bannerRotasi.innerHTML = content[contentStart];
} else{
bannerRotasi.innerHTML = content[contentStart];
}
bannerRotasi.href=links[contentStart];

$('frame').hide();
Effect.Appear('frame',{duration:  bannerDuration});
setTimeout('bannerRotator()',bannerSpeed * 1000);
}

&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id="frame" background-color:#FF0055"&gt;
&lt;a href="#" target="_blank" name="bannerRotasi" id="bannerRotasi"&gt;&lt;/a&gt;
&lt;script type  ="text/javascript"&gt;
bannerRotator()
&lt;/script&gt;
&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.stillcetek.com/2007-12-23/html-rotator-with-prototype-scriptaculous-effect.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML Rotator</title>
		<link>http://www.stillcetek.com/2007-12-23/html-rotator.html</link>
		<comments>http://www.stillcetek.com/2007-12-23/html-rotator.html#comments</comments>
		<pubDate>Sun, 23 Dec 2007 03:46:56 +0000</pubDate>
		<dc:creator>Lukman</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.stillcetek.com/2007-12-23/html-rotator.html</guid>
		<description><![CDATA[Kode sederhana HTML rotator, bisa digunakan sebagai banner rotator iklan, slideshow fhotos, atau text rotator dengan format-format html. Nice.. get the code below:

&#60;html&#62;
&#60;head&#62;&#60;title&#62;Cetek&#60;/title&#62;
&#60;style type="text/css"&#62;
img{
border:none;
}
&#60;/style&#62;

&#60;script type="text/javascript"&#62;var content = new Array('&#60;b&#62;Test Link1&#60;/b&#62; Bold','Test Link2 &#60;i&#62; Format HTML&#60;/i&#62;','&#60;img src="images/link.gif"&#62;');

var links = new Array('http://www.google.com','http://www.stillcetek.com','http://www.yahoo.com');

var contentStart = 0;
var contentCount = content.length;
var bannerSpeed  = 10;

function bannerRotator() {
var bannerRotasi = document.getElementById("bannerRotasi");
contentStart++;
if [...]]]></description>
			<content:encoded><![CDATA[<p>Kode sederhana HTML rotator, bisa digunakan sebagai banner rotator iklan, slideshow fhotos, atau text rotator dengan format-format html. Nice.. get the code below:</p>
<pre>
&lt;html&gt;
&lt;head&gt;&lt;title&gt;Cetek&lt;/title&gt;
&lt;style type="text/css"&gt;
img{
border:none;
}
&lt;/style&gt;

&lt;script type="text/javascript"&gt;var content = new Array('&lt;b&gt;Test Link1&lt;/b&gt; Bold','Test Link2 &lt;i&gt; Format HTML&lt;/i&gt;','&lt;img src="images/link.gif"&gt;');

var links = new Array('http://www.google.com','http://www.stillcetek.com','http://www.yahoo.com');

var contentStart = 0;
var contentCount = content.length;
var bannerSpeed  = 10;

function bannerRotator() {
var bannerRotasi = document.getElementById("bannerRotasi");
contentStart++;
if (contentStart == contentCount) {
contentStart = 0;
}
if(document.all){
bannerRotasi.innerHTML = content[contentStart];
} else{
bannerRotasi.innerHTML = content[contentStart];
}

bannerRotasi.href=links[contentStart];
setTimeout('bannerRotator()',bannerSpeed * 1000);
}

&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id="frame" background-color:#FF0055"&gt;
&lt;a href="#" target="_blank" name="bannerRotasi" id="bannerRotasi"&gt;&lt;/a&gt;
&lt;script type  ="text/javascript"&gt;
bannerRotator()
&lt;/script&gt;

&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.stillcetek.com/2007-12-23/html-rotator.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
