亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

jquery 圖片 上一張 下一張 鏈接效果(續(xù)篇)

 更新時(shí)間:2010年04月20日 19:15:43   作者:  
很久沒(méi)寫(xiě)文章了,這段時(shí)間一直在做類似鮮果的一個(gè)應(yīng)用和數(shù)據(jù)采集,還有就是對(duì)企業(yè)和個(gè)人成長(zhǎng)的思考。
前段時(shí)間寫(xiě)了篇圖片 上一張 下一張 鏈接效果,后來(lái)看到 jquery插件封裝,手里癢癢的,拿這個(gè)例子做ex.

封裝后的JS源碼:
復(fù)制代碼 代碼如下:

/*
* imageupdown 1.0
* Copyright (c) 2009
* Date: 2010-04-20
* 圖片移動(dòng)上一張 下一張?zhí)匦?
*/
(function($){
$.fn.imageupdown = function(options){
var defaults = {
upCursor:"pre.cur",
upTitle:"點(diǎn)擊查看上一張",
upUrl:$(this).attr('left'),
downCursor:"next.cur",
downTitle:"點(diǎn)擊查看下一張",
downUrl:$(this).attr('right')
}
var options = $.extend(defaults, options);
this.each(function(){
var thisImage=$(this);
$(thisImage).bind("mousemove",function(e){
var positionX=e.originalEvent.x||e.originalEvent.layerX||0;
if(positionX<=$(this).width()/2){
this.style.cursor='url('+options.upCursor+'),auto';
$(this).attr('title',''+options.upTitle+'');
$(this).parent().attr('href',''+options.upUrl+'');
}else{
this.style.cursor=''+options.downCursor+'';
$(this).attr('title',''+options.downTitle+'');
$(this).parent().attr('href',''+options.downUrl+'');
}
});
});
};
})(jQuery);

html頁(yè)面調(diào)用方法:
復(fù)制代碼 代碼如下:

<script type="text/javascript">
$(document).ready(function() {
$(".rootclass").imageupdown();
});
</script>

可能有疑惑的地方:
(1)function(e) e 是什么意思
應(yīng)該是對(duì)應(yīng)事件。
$().click(function(e) {}); // 這里的e是click事件
$().focus(function(e) {});// 這里的e是focus事件

相關(guān)文章

最新評(píng)論