## About ColorBox:
A customizable lightbox plugin for jQuery. See the [project page](http://jacklmoore.com/colorbox/) for documentation and a demonstration, and the [FAQ](http://jacklmoore.com/colorbox/faq/) for solutions and examples to common issues. Released under the [MIT license](http://www.opensource.org/licenses/mit-license.php).
## Changelog:
### Version 1.3.19 - December 08 2011
Files Changed:jquery.colorbox.js/jquery.colorbox-min.js, colorbox.css (all)
* Fixed bug related to using the 'fixed' property.
* Optimized the setup procedure to be more efficient.
* Removed $.colorbox.init() as it will no longer be needed (will self-init when called).
* Removed use of $.browser.
### Version 1.3.18 - October 07 2011
Files Changed:jquery.colorbox.js/jquery.colorbox-min.js, colorbox.css (all) and example 1's controls.png
* Fixed a regression where Flash content displayed in ColorBox would be reloaded if the browser window was resized.
* Added safety check to make sure that ColorBox's markup is only added to the DOM a single time, even if $.colorbox.init() is called multiple times. This will allow site owners to manually initialize ColorBox if they need it before the DOM has finished loading.
* Updated the example index.html files to be HTML5 compliant.
* Changed the slideshow behavior so that it immediately moves to the next slide when the slideshow is started.
* Minor regex bugfix to allow automatic detection of image URLs that include fragments.
### Version 1.3.17 - May 11 2011
Files Changed:jquery.colorbox.js/jquery.colorbox-min.js
* Added properties "top", "bottom", "left" and "right" to specify a position relative to the viewport, rather than using the default centering.
* Added property "data" to specify GET or POST data when using Ajax. ColorBox's ajax functionality is handled by jQuery's .load() method, so the data property works the same way as it does with .load().
* Added property "fixed" which can provide fixed positioning for ColorBox, rather than absolute positioning. This will allow ColorBox to remain in a fixed position within the visitors viewport, despite scrolling. IE6 support for this was not added, it will continue to use the default absolute positioning.
* Fixed ClearType problem with IE7.
* Minor fixes.
### Version 1.3.16 - March 01 2011
Files Changed:jquery.colorbox.js/jquery.colorbox-min.js, colorbox.css (all) and example 4 background png files
* Better IE related transparency workarounds. IE7 and up now uses the same background image sprite as other browsers.
* Added error handling for broken image links. A message will be displayed telling the user that the image could not be loaded.
* Added new property: 'fastIframe' and set it to true by default. Setting to fastIframe:false will delay the loading graphic removal and onComplete event until iframe has completely loaded.
* Ability to redefine $.colorbox.close (or prev, or next) at any time.
### Version 1.3.15 - October 27 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* Minor fixes for specific cases.
### Version 1.3.14 - October 27 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* In IE6, closing an iframe when using HTTPS no longer generates a security warning.
### Version 1.3.13 - October 22 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* Changed the index.html example files to use YouTube's new embedded link format.
* By default, ColorBox returns focus to the element it was launched from once it closes. This can now be disabled by setting the 'returnFocus' property to false. Focus was causing problems for some users who had their anchor elements inside animated containers.
* Minor bug fix involved in using a combination of slideshow and non-slideshow content.
### Version 1.3.12 - October 20 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* Minor bug fix involved in preloading images when using a function as a value for the href property.
### Version 1.3.11 - October 19 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* Fixed the slideshow functionality that broke with 1.3.10
* The slideshow now respects the loop property.
### Version 1.3.10 - October 16 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* Fixed compatibility with jQuery 1.4.3
* The 'open' property now accepts a function as a value, like all of the other properties.
* Preloading now loads the correct href for images when using a dynamic (function) value for the href property.
* Fixed bug in Safari 3 for Win where ColorBox centered on the document, rather than the visitor's viewport.
* May have fixed an issue in Opera 10.6+ where ColorBox would rarely/randomly freeze up while switching between photos in a group.
* Some functionality better encapsulated & minor performance improvements.
### Version 1.3.9 - July 7 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js/ all colorbox.css (the core styles)
* Fixed a problem where iframed youtube videos would cause a security alert in IE.
* More code is event driven now, making the source easier to grasp.
* Removed some unnecessary style from the core CSS.
### Version 1.3.8 - June 21 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* Fixed a bug in Chrome where it would sometimes render photos at 0 by 0 width and height (behavior introduced in recent update to Chrome).
* Fixed a bug where the onClosed callback would fire twice (only affected 1.3.7).
* Fixed a bug in IE7 that existed with some iframed websites that use JS to reposition the viewport caused ColorBox to move out of position.
* Abstracted the identifiers (HTML ids & classes, and JS plugin name, method, and events) so that the plugin can be easily rebranded.
* Small changes to improve either code readability or compression.
### Version 1.3.7 - June 13 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js/index.html
* $.colorbox can now be used for direct calls and accessing public methods. Example: $.colorbox.close();
* Resize now accepts 'width', 'innerWidth', 'height' and 'innerHeight'. Example: $.colorbox.resize({width:"100%"})
* Added option (loop:false) to disable looping in a group.
* Added options (escKey:false, arrowKey:false) to disable esc-key and arrow-key bindings.
* Added method for removing ColorBox from a document: $.colorbox.remove();
* Fixed a bug where iframed URLs would be truncated if they contained an unencoded apostrophe.
* Now uses the exact href specified on an anchor, rather than the version returned by 'this.href'. This was causing "#example" to be normalized to "http://domain/#example" which interfered with how some users were setting up links to inline content.
* Changed example documents over to HTML5.
### Version 1.3.6 - Jan 13 2010
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* Small change to make ColorBox compatible with jQuery 1.4
### Version 1.3.5 - December 15 2009
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* Fixed a bug introduced in 1.3.4 with IE7's display of example 2 and 3, and auto-width in Opera.
* Fixed a bug introduced in 1.3.4 where colorbox could not be launched by triggering an element's click event through JavaScript.
* Minor refinements.
### Version 1.3.4 - December 5 2009
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
* Event delegation is now used for elements that ColorBox is assigned to, rather than individual click events.
* Additional callbacks have been added to represent other stages of ColorBox's lifecycle. Available callbacks, in order of their execution: onOpen, onLoad, onComplete, onCleanup, onClosed These take place at the same time as the event hooks, but will be better suited than the hooks for targeting specific instances of ColorBox.
* Ajax content is now immediately added to the DOM to be more compatible if that content contains
没有合适的资源?快使用搜索试试~ 我知道了~
PHP实例开发源码-kh-mod php相册管理程序 final 简体中文版.zip
共313个文件
php:130个
gif:118个
png:18个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 103 浏览量
2022-11-21
09:54:31
上传
评论
收藏 777KB ZIP 举报
温馨提示
PHP实例开发源码—kh_mod php相册管理程序 final 简体中文版.zip PHP实例开发源码—kh_mod php相册管理程序 final 简体中文版.zip PHP实例开发源码—kh_mod php相册管理程序 final 简体中文版.zip
资源推荐
资源详情
资源评论
收起资源包目录
PHP实例开发源码-kh-mod php相册管理程序 final 简体中文版.zip (313个子文件)
style.css 8KB
style.css 7KB
admin.css 7KB
calendar_mg2.css 6KB
calendar-win2k-cold-1.css 6KB
calendar-blue.css 5KB
colorbox.css 4KB
colorbox.css 3KB
colorbox.css 2KB
colorbox.css 2KB
options.css 2KB
install.css 1KB
msie.css 484B
msie.css 338B
loading.gif 9KB
loading.gif 9KB
loading.gif 9KB
loading.gif 9KB
logo.gif 7KB
video.gif 5KB
emptyfolder.gif 5KB
folder.gif 5KB
locked.gif 5KB
emptyfolder.gif 4KB
video.gif 4KB
video.gif 4KB
audio.gif 4KB
audio.gif 4KB
audio.gif 4KB
locked.gif 4KB
folder.gif 4KB
folder.gif 3KB
play_large.gif 3KB
play_large.gif 3KB
menu_importnew.gif 2KB
menu_viewgallery.gif 2KB
menu_setup.gif 2KB
menu_logoff.gif 2KB
menu_upload.gif 2KB
menu_newfolder.gif 2KB
folder_small_thumb_locked.gif 1KB
folder_small_thumb.gif 1KB
remove.gif 1KB
folder_small_locked.gif 1KB
reload.gif 1KB
folder_small.gif 1KB
thumb_lock.gif 1KB
sysfolder_small.gif 1KB
thumb.gif 1015B
dir_topright_medium.gif 998B
last_inactiv.gif 868B
first_inactiv.gif 868B
last_activ.gif 868B
last_inactiv.gif 868B
last_activ.gif 868B
first_activ.gif 868B
first_activ.gif 868B
first_inactiv.gif 868B
last_inactiv.gif 857B
last_activ.gif 857B
first_inactiv.gif 855B
first_activ.gif 855B
next_inactiv.gif 851B
prev_activ.gif 851B
next_inactiv.gif 851B
prev_inactiv.gif 851B
next_activ.gif 851B
prev_inactiv.gif 851B
prev_activ.gif 851B
next_activ.gif 851B
rotateright.gif 845B
ok.gif 845B
ok.gif 845B
ok.gif 845B
prev_inactiv.gif 842B
prev_activ.gif 842B
next_inactiv.gif 841B
next_activ.gif 841B
rotateleft.gif 840B
imagemap2.gif 708B
default.gif 630B
imagemap1.gif 614B
rebuild.gif 608B
cancel.gif 597B
edit_dimmed.gif 597B
edit.gif 597B
delete.gif 591B
dir_bottomright.gif 322B
dir_topright_fullsize.gif 288B
img_comment.gif 248B
tab_unselected.gif 218B
dir_topleft.gif 217B
tab_selected.gif 210B
dir_bottomleft.gif 207B
dir_topright.gif 191B
lock.gif 182B
new.gif 181B
slideshow.gif 163B
img_bottomright.gif 161B
slideshow.gif 158B
共 313 条
- 1
- 2
- 3
- 4
资源评论
毕业_设计
- 粉丝: 1975
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于Visual Basic .Net及Python技术的学校需求解决方案设计源码
- 基于Java语言的Web开发学习Demo设计源码
- 基于Java的医院排队叫号系统界面原型设计源码
- 基于Java语言的Himalaya仿喜马拉雅设计源码
- 基于PHP+HTML+CSS+JavaScript的智能电车管家设计源码
- 基于Emscripten编译的纯H5直播流播放器jessibuca设计源码
- 基于react-native的Android隐私合规配置与代码集成设计源码
- 基于JavaFX技术的全功能色彩管理器设计源码
- erlang-21.3-1.el7.x86-64.rpm
- eclipse-inst-jre-win64.exe
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功