----
/**
* jQuery Lightbox Plugin (balupton edition) - Lightboxes for jQuery
* Copyright (C) 2008 Benjamin Arthur Lupton
* http://jquery.com/plugins/project/jquerylightbox_bal
*
* Permission is granted to copy, distribute and/or modify this document
* under the terms of the GNU Free Documentation License, Version 1.2
* or any later version published by the Free Software Foundation;
* with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
* Texts. A copy of the license is included in the section entitled "GNU
* Free Documentation License".
*
* @name jquery_lightbox: jquery.lightbox.js
* @package jQuery Lightbox Plugin (balupton edition)
* @version v1.3.5-final
* @date September 15, 2008
* @category jQuery plugin
* @author Benjamin "balupton" Lupton {@link http://www.balupton.com}
* @copyright (c) 2008 Benjamin Arthur Lupton {@link http://www.balupton.com}
* @license GNU Free Documentation License - {@link http://www.gnu.org/licenses/fdl.html}
* @example Visit {@link http://jquery.com/plugins/project/jquerylightbox_bal} for more information.
*/
----
Installation:
Upload the jquery_lightbox directory to somewhere on your webserver, then include the following into your webpages html head:
<!-- Include jQuery (Lightbox Requirement) -->
<script type="text/javascript" src="jquery_lightbox/js/jquery-1.2.6.pack.js"></script>
<!-- Include Lightbox (Production) -->
<script type="text/javascript" src="jquery_lightbox/js/jquery.lightbox.packed.js"></script>
adjusting the src locations appropriately.
Usage:
Refer to (index.html) or (http://www.balupton.com/sandbox/jquery_lightbox/) if (index.html) does not exist.
For more information:
Refer to the source code of (index.html) or (http://www.balupton.com/sandbox/jquery_lightbox/) if (index.html) does not exist.
Support:
http://plugins.jquery.com/project/issues/jquerylightbox_bal
----
Options:
Name: show_info
Description: Should we force the show of the image information?
Values:
"auto" (default) - It should be handled automaticly on rollover
true - It should be forced to show
Name: show_extended_info
Description: Should we force the show of the extended image information?
Values:
"auto" (default) - It should be handled automaticly on rollover
true - It should be forced to show
Name: download_link
Description: Should we show the image download link?
Values:
true (default) - Yes we should
false - No we shouldn't
Name: auto_resize
Description: Should we auto resize the image if it is too big?
Values:
true (default) - Yes
false - No
Name: colorBlend
Description: Should we support colorBlend?
Values:
null (default) - Enabled only if colorBlend is already detected
true - Include colorBlend and enable
false - Don't support colorBlend
Name: ie6_support
Description: Should we support IE6
Values:
true (default) - Support IE6
false - Ignore IE6
Name: ie6_upgrade
Description: Should we show an IE6 upgrade message for IE6 users
Values:
true (default) - Yes
false - No
Name: show_linkback
Description: Show or hide the linkback up the top right corner
Values:
true (default) - Show the linkback
false - Hide the linkback
Name: auto_scroll
Description: How should scrolling be handled?
Values:
"follow" (default) - Scroll with the user
"disabled" - Don't allow scrolling
"ignore" - Don't care for scrolling (leave lightbox at original position)
Name: speed
Description: The total amount of milliseconds it takes to perform transitions between images.
Values:
400 (default) - Take 400 milliseconds
integer - Amoung in milliseconds
Name: baseurl
Description: The baseurl to use to auto include the required files
Values:
null (default) - Autodetect
string - A string of the manual baseurl to use
Name: files
Description: The javascript object that contains the locations of the requred files, used if you have renamed files.
Children: js.lightbox, js.colorBlend, css.lightbox, images.prev, images.next, images.blank, images.loading
Name: text
Description: The javascript object that contains the text of various parts of the interface, used if you want to do translations.
Children: image, of, close, closeInfo, download, help.close, help.interact, about.text, about.title, about.link
Name: keys
Description: The javascript object that contains the key allocations for shortcuts, used if you want to remap the shortcuts
Children: close, prev, next
Name: opacity
Description: The opacity of the overlay
Values:
0.9 (default) - 90% opacity
decimal value - opacity percentage in decimal form
Name: padding
Description: The padding around the image, if you are using a custom padding you want to adjust this
Values:
null (default) - Autodetect
integer - the integer amount of the padding
Name: rel
Description: What to look for in the rel tag of links and images to detect if it should have a lightbox
Values:
"lightbox" (default) - Look for rel="lightbox" by default
string - What to lookfor
Name: auto_relify
Description: Should we do an initial rel scan to automaticly detect lightboxes?
Values:
true (default) - Yes we should
false - No we shouldn't
----
How to apply options?
There are two methods, one is through the link form, and the other is through the constructor.
Use the below examples to derive how it is used to hide the linkback, and translate "Image" to "Photo".
Link method:
<script type="text/javascript" src="jquery_lightbox/js/jquery.lightbox.packed.js?show_linkback=false&text.image=Photo"></script>
Constructor method:
<script type="text/javascript" src="jquery_lightbox/js/jquery.lightbox.packed.js"></script>
<script type="text/javascript">$(function(){
$.Lightbox.construct({
show_linkback: false,
text: {
image: 'Photo'
}
});
});</script>
----
Changelog:
v1.3.5-final (September 15, 2008)
- Fixed packer problem with websites using a non-standard charset
credits to mckeephoto, snorri: http://plugins.jquery.com/node/3983
v1.3.4-final (September 12, 2008)
- Fixed problem with show_extended_info not working
credits to c_t: http://plugins.jquery.com/node/3954
v1.3.3-final (September 10, 2008)
- Fixed non firefox console error
v1.3.2-final (September 10, 2008)
- Fixed debugging on special instances.
- Corrected scroll option, now use 'auto_scroll'.
- Added the following options: auto_resize, download_link, show_info, show_extended_info,
credits to jUser: http://plugins.jquery.com/node/3729
credits to beachroby: http://plugins.jquery.com/node/3767
credits to Feedback: http://plugins.jquery.com/node/3683
- Now uses jresig's color plugin instead of the colorBlend plugin
credits to jresig: http://plugins.jquery.com/project/color
- ColorBlend feature now also changes border color
v1.3.1-rc1 (August 24, 2008)
- Repack
v1.3.0-rc1 (August 24, 2008)
- Added colorBlend support, so if used, the background-color of the overlay will be that of the image.
colorBlend's page: http://plugins.jquery.com/project/colorBlend
credits to bobcatt (http://www.menfin.net/): http://plugins.jquery.com/node/3311
example by bobcatt (http://www.menfin.net/): http://www.menfin.net/Exposition-Game-On.html
- IE6 support is now back
Upgrade message is optional with the "ie6_upgrade" option
IE6 support is optional with the "ie6_support" option
r
没有合适的资源?快使用搜索试试~ 我知道了~
程序源码 EnjooSite CMS&BLOG 快乐建站 v2009_enjoosite2009(ASP.NET源码).rar
共2000个文件
gif:1130个
swf:706个
jpg:519个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 90 浏览量
2023-03-13
08:00:10
上传
评论
收藏 24.85MB RAR 举报
温馨提示
免责声明:资料部分来源于合法的互联网渠道收集和整理,部分自己学习积累成果,供大家学习参考与交流。收取的费用仅用于收集和整理资料耗费时间的酬劳。 本人尊重原创作者或出版方,资料版权归原作者或出版方所有,本人不对所涉及的版权问题或内容负法律责任。如有侵权,请举报或通知本人删除。
资源推荐
资源详情
资源评论
收起资源包目录
程序源码 EnjooSite CMS&BLOG 快乐建站 v2009_enjoosite2009(ASP.NET源码).rar (2000个子文件)
_x_ 2KB
_x_ 2KB
_x_ 2KB
sample02.afp 3KB
sample04.afp 3KB
sample03.afp 3KB
sampleposteddata.afp 2KB
sample01.afp 2KB
fck.afpa 25B
all-wcprops 400B
all-wcprops 386B
all-wcprops 386B
all-wcprops 382B
Global.asax 80B
EntryEditor.ascx 41KB
BlogsEditor.ascx 13KB
WidgetsManager.ascx 12KB
SilverAlbumViewer.ascx 8KB
ViewPost.ascx 7KB
GroupsEditor.ascx 6KB
WebPageManager.ascx 5KB
config.ascx 5KB
BlogEditor.ascx 5KB
AdminMenuTree.ascx 5KB
AggRecentImages.ascx 5KB
PostDebatedTemplate.ascx 5KB
EntriesList.ascx 4KB
FlashGalleryModule_Edit.ascx 4KB
TagModule_Edit.ascx 4KB
PageTemplate.ascx 4KB
SiteFavoriteHomePage.ascx 4KB
SiteMenu.ascx 4KB
BlogsList.ascx 4KB
SiteLayoutEdit.ascx 4KB
SubjectHomePage.ascx 4KB
PostComment.ascx 3KB
LoginStateModule.ascx 3KB
Contact.ascx 3KB
ThemeManager.ascx 3KB
WebPagesMenu.ascx 3KB
LoginState.ascx 3KB
homepage.ascx 3KB
NiceList_Data.ascx 3KB
Comments.ascx 3KB
HotImageNews.ascx 3KB
SystemArticleView.ascx 3KB
ViewPostVote.ascx 3KB
Weather2Module.ascx 3KB
ChannelModule_Edit.ascx 3KB
NewsList_Data.ascx 3KB
GalleryListViewer.ascx 2KB
HotNewsList_Data.ascx 2KB
AggRecentImages.ascx 2KB
EntryList.ascx 2KB
BlogPostsList_Data.ascx 2KB
StaticHTML_Data.ascx 2KB
EntryList.ascx 2KB
SystemArticleList.ascx 2KB
PostRelatedPosts.ascx 2KB
TopEntryList.ascx 2KB
PostQuestion.ascx 2KB
TagsHomePage.ascx 2KB
PageTemplate.ascx 2KB
PostVote.ascx 2KB
BlogPostsList_Edit.ascx 2KB
HotNewsList_Edit.ascx 2KB
AggRecentPosts.ascx 2KB
ViewPicture.ascx 2KB
StaticHTMLModule_Edit.ascx 2KB
NewsList_Edit.ascx 2KB
AggRecentPosts.ascx 2KB
MyLinks.ascx 2KB
HotNewsPopup.ascx 2KB
ChannelEntryList.ascx 2KB
EntryList.ascx 2KB
GalleryThumbNailViewer.ascx 2KB
NiceList_Edit.ascx 2KB
Footer.ascx 2KB
WidgetWrapper.ascx 2KB
Add.ascx 2KB
TagsHomePage.ascx 2KB
FullTagCloud.ascx 2KB
PostScore.ascx 1KB
VPostCategoryList.ascx 1KB
HomeContent.ascx 1KB
ChannelCategories.ascx 1KB
SiteHeader_EditMode.ascx 1KB
SiteNavigation_Module.ascx 1KB
ArticlesHotImageList.ascx 1KB
FlashGallery_Edit.ascx 1KB
SiteHeader.ascx 1KB
RssModule_Edit.ascx 1KB
EnjooSiteSearch.ascx 1KB
ChannelHeader.ascx 1KB
SystemChannelsModule.ascx 1KB
AggRecentComments.ascx 1KB
StaticHTML_Edit.ascx 1KB
WidgetEditTemplate.ascx 1KB
TopEntryList.ascx 1KB
Nice2RowRight.ascx 1KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
金枝玉叶9
- 粉丝: 195
- 资源: 7637
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功