本文实例讲述了jQuery插件制作之参数用法。分享给大家供大家参考。具体分析如下:
1、无参数实现文字阴影效果
- jQuery.fn.shadow =function(){
- return this.each(function(){
- var $originalElement = jQuery(this);
- for(var i = 0;i < 5;i++){
- $originalElement.clone()
- .css({
- position :"absolute",
- left :$originalElement.offset().left + i,
- top :$originalElement.offset().top + i,
- margin : 0,
- zIndex : -1,
- opacity : 0.1
- })
- .appendTo("body");
- }
- })
- }
新闻热点
疑难解答
图片精选