Js mouse slide over image vibration effects, js slide over vibration effects
This article describes how to use js mouse to slide over images and vibrate images. Share it with you for your reference. The specific implementation method is as follows:
Copy codeThe Code is as follows: <Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312">
<Title> move the mouse over the image to vibrate </title>
<STYLE>. shakeimage {
POSITION: relative
}
</STYLE>
</Head>
<Body>
<SCRIPT language = JavaScript1.2>
<! --
Var rector = 3
Var stopit = 0
Var a = 1
Function init (which ){
Stopit = 0
Shake = which
Shake. style. left = 0
Shake. style. top = 0
}
Function rattleimage (){
If ((! Document. all &&! Document. getElementById) | stopit = 1)
Return
If (a = 1 ){
Shake. style. top = parseInt (shake. style. top) + rector
}
Else if (a = 2 ){
Shake. style. left = parseInt (shake. style. left) + rector
}
Else if (a = 3 ){
Shake. style. top = parseInt (shake. style. top)-rector
}
Else {
Shake. style. left = parseInt (shake. style. left)-rector
}
If (a <4)
A ++
Else
A = 1
SetTimeout ("rattleimage ()", 50)
}
Function stoprattle (which ){
Stopit = 1
Which. style. left = 0
Which. style. top = 0
}
// -->
</SCRIPT>
Hover the mouse over the image preview.
</Body>
</Html>
I hope this article will help you design javascript programs.