Warung Online

kumpulan script blog

Posted by cyber On Thursday, March 24, 2011 0 comments

1. Script klik kanan ada pesan warning :
Quote:

Code:

<script language="JavaScript1.1">
function ejs_nodroit()
{
alert('Pesan warning');
return(false);
}
document.oncontextmenu = ejs_nodroit;
</script>


yang bertulis pesan warning adalah pesan warning yang kamu tulis

2. Script efek Bintang jatuh :
Quote:

Code:

<script src='http://www.geocities.com/ridwanox/bintangjatuh.js' type='text/javascript'></script>


3. Script efek salju berguguran :
Quote:

Code:

<script src='http://www.geocities.com/ridwanox/saljubesar.js' type='text/javascript'></script>


4. Script efek hujan bunga
Quote:

Code:

<script language="JavaScript"
src="http://www.geocities.com/ferdy_giel/Script/Flowerain.js">
</script>



5. Script efek kembang api :
Quote:

Code:

<script src='http://www.geocities.com/ridwanox/kembangapi.js' type='text/javascript'></script>


6. Script efek hati bertaburan :
Quote:

Code:

<script src='http://www.geocities.com/ridwanox/efekhati.js' type='text/javascript'></script>


7. Script text judul berjalan :
Quote:

Code:

<script language="JavaScript1.2">
var message="Tulisan judul"
var message=message+"          "
i="0"                 
var temptitle="" 
var speed="175"
function titler(){
if (!document.all&&!document.getElementById)
return
document.title=temptitle+message.charAt(i)
temptitle=temptitle+message.charAt(i)
i++   
if(i==message.length)
{
i="0"           
temptitle=""
}
setTimeout("titler()",speed)
}
window.onload=titler
</script>


yang bertulis Tulisan judul adalah text judul yang kamu tulis

8. Script text mengitari mouse
Quote:

Code:

<style type="text/css">
/* Circle Text Styles */
#outerCircleText {
/* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
font-style: italic;
font-weight: bold;
font-family: 'comic sans ms', verdana, arial;
color: #000;
/* End Optional */
/* Start Required - Do Not Edit */
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
/* End Required */
/* End Circle Text Styles */
</style>
<script type="text/javascript">
;(function(){
// Your message here (QUOTED STRING)
var msg = "Tulisan";
/* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */
// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 24;
// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 2;
// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;
// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 10;
// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.4;
// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;
////////////////////// Stop Editing //////////////////////
if (!window.addEventListener && !window.attachEvent || !document.createElement) return;
msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,
mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},
makecircle = function(){ // rotation/positioning
if(init.nopy){
  o.style.top = (b || document.body).scrollTop + 'px';
  o.style.left = (b || document.body).scrollLeft + 'px';
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
  d = document.getElementById('iemsg' + i).style;
  d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
  d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
};
},
drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
  y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
  x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},
init = function(){ // appends message divs, & sets initial values for positioning arrays
if(!isNaN(window.pageYOffset)){
  ymouse += window.pageYOffset;
  xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
  d = document.createElement('div'); d.id = 'iemsg' + i;
  d.style.height = d.style.width = a + 'px';
  d.appendChild(document.createTextNode(msg[i]));
  oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},
ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener('scroll', ascroll, false);
};
o.id = 'outerCircleText'; o.style.fontSize = size + 'px';
if (window.addEventListener){
window.addEventListener('load', init, false);
document.addEventListener('mouseover', mouse, false);
document.addEventListener('mousemove', mouse, false);
  if (/Apple/.test(navigator.vendor))
  window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
window.attachEvent('onload', init);
document.attachEvent('onmousemove', mouse);
};
})();
</script>

yang bertulis Tulisan adalah text kamu

9. Script Animasi Page title di browser :
Quote:

Code:

<SCRIPT LANGUAGE="JavaScript">
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
var message = new Array();
message[0] = "Title halaman"
var reps = 2;
var speed = 100;
var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function doIt() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 8) { s = 1;}
if (s == 1) { document.title = '.¸.·´¯`·.¸.·´¯`·.¸.·´¯`· '+T+' ¸.·´¯`·.¸.·´¯`·.¸.·´¯`·.'; }
if (s == 2) { document.title = '·.¸.·´¯`·.¸.·´¯`·.¸.·´¯` '+T+' .·´¯`·.¸.·´¯`·.¸.·´¯`·.¸'; }
if (s == 3) { document.title = '`·.¸.·´¯`·.¸.·´¯`·.¸.·´¯ '+T+' ·´¯`·.¸.·´¯`·.¸.·´¯`·.¸.'; }
if (s == 4) { document.title = '¯`·.¸.·´¯`·.¸.·´¯`·.¸.·´ '+T+' ´¯`·.¸.·´¯`·.¸.·´¯`·.¸.·'; }
if (s == 5) { document.title = '´¯`·.¸.·´¯`·.¸.·´¯`·.¸.· '+T+' ¯`·.¸.·´¯`·.¸.·´¯`·.¸.·´'; }
if (s == 6) { document.title = '·´¯`·.¸.·´¯`·.¸.·´¯`·.¸. '+T+' `·.¸.·´¯`·.¸.·´¯`·.¸.·´¯'; }
if (s == 7) { document.title = '.·´¯`·.¸.·´¯`·.¸.·´¯`·.¸ '+T+' ·.¸.·´¯`·.¸.·´¯`·.¸.·´¯`'; }
if (s == 8) { document.title = '¸.·´¯`·.¸.·´¯`·.¸.·´¯`·. '+T+' .¸.·´¯`·.¸.·´¯`·.¸.·´¯`·'; }if (C < (8 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doIt();
  }
}
doIt();
</script>


yang bertulis Title halaman adalah text title yang kamu tulis

10. Script Flash di Blog
Quote:

Code:

<embed src="blog URL" quality="high" bgcolor="white" width="w" height="h" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi? P1_Prod_Version=ShockwaveFlash"></embed>

yang bertulis blog URL adalah alamat blog kamu
yang bertulis w dan h adalah ukuran Flash kamu

11. Script Kotak Link Exchange
Quote:

Code:

<textarea name="textarea" cols="nomor"><a href="blog URL"><img src="Image URL" width="90" height="17" border="0" /></a></textarea>

yang bertulis nomor adalah lebar kotak kamu
yang bertulis blog URL adalah alamat blog kamu
yang bertulis Image URL adalah alamat gambar kamu


Tutorial memasang :

Quote:

cara memasang nomor 2,3,5,6 adalah :
login blogger.com >>> tata letak/layout >>> Edit html
dan Ctrl + D untuk mencari kode </body>
lalu paste Script yang tadi
cara memasang nomor 1,4,7,8,9 adalah :
login blogger.com >>> tata letak/layout >>> Edit html
dan Ctrl + D untuk mencari kode </head>
lalu paste script sebelum kode </head>
cara memasang nomor 10,11 adalah :
login blogger.com >>> tata letak/layout >>> Add gadget/Widget
pilih menu HTML/Javascript
lalu paste scriptnya

Maaf kalo Script dan cara memasangnya salah :)
terima kasih kalo sudah mampir kesini :D
kumpulan Script untuk blogger



Semoga artikel kumpulan script blog bermanfaat bagi Anda.

Jika artikel ini bermanfaat,bagikan kepada rekan melalui:

Post a Comment

Langganan artikel lewat email

Enter your email address:

Delivered by FeedBurner

AutoSurf Traffic Exchange: Powerful Results with SEO tips | 10KHits - 10KHits provides quality traffic hits to your personal or business websites.
Loading

Sobat BlogCare Mau Tukar Link? Copy/paste code HTML berikut ke sidebar blog sobat

semua jadi satu

Entri Populer

Recent Comment

Followers