Show the left and right arrows on the image similar to the Code for turning pages

Source: Internet
Author: User

Using JS to display the picture on the left and right arrows Page code, preview effect Web site: http://www.keleyi.com/keleyi/phtml/picnext/
This example uses the onmousemove event of javascript. The onmousemove event occurs when the mouse pointer moves.

Syntax
Onmousemove = "sometriccriptcode"
Sometriccriptcode is a required parameter. Specifies the JavaScript code executed when the event occurs.

Below is the core code(For the complete code, view the source code on the results page ):Copy codeThe Code is as follows: <script type = "text/javascript">
Function KeleyiImgNext (bigimg ){
Var lefturl = "01.html ";
Var righturl = "03.html ";
Var imgurl = righturl;
Var width = bigimg. width;
Var height = bigimg. height;
Bigimg. onmousedown = bigimg. onmousemove = function (){
If (event. offsetX <width/2 ){
Imgurl = lefturl;
If (imgurl! = "#")
Bigimg. style. cursor = 'url (images/arr_left.cur), auto ';
Else
Bigimg. style. cursor = 'default ';
} Else {
Imgurl = righturl;
If (imgurl! = '#')
Bigimg. style. cursor = 'url (images/arr_right.cur), auto ';
Else
Bigimg. style. cursor = 'default ';
}
}
Bigimg. onmouseup = function (){
If (imgurl! = '#')
Top. location = imgurl;
}
}
</Script>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.