$(document).ready(function(){ var img_left = $(".fb_image img").eq(0).offset().left; var img_top = $(".fb_image img").eq(0).offset().top; var width = $(".fb_image img").eq(0).width(); var height = $(".fb_image img").eq(0).height(); var l_start_width = img_left; var l_end_width = img_left + (width/2); var r_start_width = l_end_width; var r_end_width = img_left+width; var start_height = img_top; var end_height = height + img_top; $(".fb_image img").eq(0).mousemove( function(e){ if(e.pageY > start_height && e.pageY < end_height){ if(e.pageX > l_start_width && e.pageX < l_end_width){ $(".fb_image img").eq(0).css("cursor","url(http://icon.xgo.com.cn/photo/pre1.cur),auto"); $(".fb_image img").eq(0).title="查看上一张"; var prev_page = $("#prevUrl").attr("href"); $(".fb_image a").eq(0).attr("href",prev_page); } if(e.pageX > r_start_width && e.pageX < r_end_width){ $(".fb_image img").eq(0).css("cursor","url(http://icon.xgo.com.cn/photo/next1.cur),auto"); $(".fb_image img").eq(0).title="查看下一张"; var next_page = $("#nextUrl").attr("href"); $(".fb_image a").eq(0).attr("href",next_page); } } }) })
js 左右图标翻页
最新推荐文章于 2022-06-13 19:33:05 发布