membuat gambar pada mouse diweb anda

metwot

New member
mungkin sebagain besar udah tau script mebuat tampilan gambar pada mouse dalm web anda, tapi gak ada salahnyakan kalo gw posting mungkin bisa berguna :D . nanti script ini di taruh diatas tag body ato dalam tag bodynya juga bisa.

<script language="JavaScript1.2">
<!--


var trailLength = 8 // The length of trail (8 by default; put more for longer "tail")
var path = "file:///D|/iyn/lisna%20gaga.jpg" // URL foto anda

// jangan dirubah apun yang ada disini
var isIE = false,isNav = false,range = "all.",style = ".style",i,d = 0
var topPix = ".pixelTop",leftPix = ".pixelLeft",images,storage
if (document.layers) { // browser sniffer
isNav = true,range = "layers.",style = "",topPix = ".top",leftPix = ".left"
} else if (document.all) {
isIE = true
}
function initTrail() { // prepares the script
images = new Array() // prepare the image array
for (i = 0; i < parseInt(trailLength); i++) {
images = new Image()
images.src = path
}
storage = new Array() // prepare the storage for the coordinates
for (i = 0; i < images.length*3; i++) {
storage = 0
}
for (i = 0; i < images.length; i++) { // make divs for IE and layers for Navigator
(isIE) ? document.write('<div id="obj' + i + '" style="position: absolute; z-Index: 100; height: 0; width: 0"><img src="' + images.src + '"></div>') : document.write('<layer name="obj' + i + '" width="0" height="0" z-index="100"><img src="' + images.src + '"></layer>')
}
trail()
}
function trail() { // trailing function
for (i = 0; i < images.length; i++) { // for every div/layer
eval("document." + range + "obj" + i + style + topPix + "=" + storage[d]) // the Y-coordinate
eval("document." + range + "obj" + i + style + leftPix + "=" + storage[d+1]) // the X-coordinate
d = d+2
}
for (i = storage.length; i >= 2; i--) { // save the coordinate for the div/layer that's behind
storage = storage[i-2]
}
d = 0 // reset for future use
var timer = setTimeout("trail()",10) // call recursively
}
function processEvent(e) { // catches and processes the mousemove event
if (isIE) { // for IE
storage[0] = window.event.y+document.body.scrollTop+10
storage[1] = window.event.x+document.body.scrollLeft+10
} else { // for Navigator
storage[0] = e.pageY+12
storage[1] = e.pageX+12
}
}
if (isNav) {
document.captureEvents(Event.MOUSEMOVE) // Defines what events to capture for Navigator
}
if (isIE || isNav) { // initiates the script
initTrail()
document.onmousemove = processEvent // start capturing
}
//-->
</script>

nah dicopy paste aja script di atas ini tapi inget narohnya di atas tag body ato dalam tag bodynya juga bisa.:wink:
 
yan dimaksud dengan tag body itu isi dari halaman web nah mungkin bagi yang belum pahm banget tentang bahasa html bisa dilihat contoh struktur sederhana html ini:

<html>
<head>
<title>latihanku</title> //baris titel dalah tampilan judul dari web kita
</head> //barisan head untuk bagian atas web kita
<body> //baris body ini yang disebut dengan tag body
<h1>haloo</h1> //baris yang ada dalam body isi web tersebut
</body>
</html>

mungkin kalo mo mencoba silahkan coba buka notpad lalu copy syntax diatas trus simpan dengan nama latihan.html, dan jangan lupa hapus yang tulisan merah itu cuman penjelasan saja.

met coba:wink:
 
itu buat nampilin gambar mouse. yang dipakai itu bahasa html. bisa juga dipakai untuk membuat web sederhana hanya dengan mengetikan bahasa html tersebut.
 
Back
Top