Releases: terrymun/Fluidbox
Fluidbox v1.4.0
This version includes a minor bug fix resolving the issue of conflicting namespace that causes IE8 to potentially crash, and a major feature implementation that allows for differential aspect ratios between thumbnail and linked images.
Update: There is a minor typo issue that marks the file as v1.3.5 in the .js
file. Be rest assured that you are indeed receiving the code for v1.4.0 :) it has been fixed in this commit (620408e
), but I have chosen not to retag the release to avoid overwriting other works based on this release.
Fluidbox v1.3.5
Removed overlayColor
settings for Fluidbox. The option is now delegated to the stylesheet, which allows for easy customization of overlays for different Fluidbox instances. It is therefore possible to specify custom overlay colours, background gradients and even images for Fluidbox. Demo has been updated to reflect this new possibility.
Also updated readme to include instructions on how to pass configuration settings to the .fluidbox()
method.
Fluidbox v1.3.4
This release consist of updates to two components in Fluidbox and a minor bug fix:
Update: Upon popular request, I have added a new feature such that Fluidbox does not enlarge excessively images that lack the necessary resolution to fill the viewport. Also updated readme to clarify basic usage details
Bug fix: Fluidbox not working with elements that are hidden. Now Fluidbox only binds to visible elements on the page. If you are revealing images later (by user interaction, AJAX requests and the likes), please bind .fluidbox
to newly visible elements.
Fluidbox v1.3.3
Bug fix: Added transition delay to thumbnail, so that the thumbnail only fades in after the enlarged image has been transformed back to the thumbnail's position.
Fluidbox v1.3.2
Update: Added support for borders and paddings on Fluidbox images. The demo has also been updated to reflect this new feature. Note that borders and paddings are not supported on the enlarged image (known as the 'ghost' image) — I feel that adding extra decorations to the enlarged image betrays the aim of Fluidbox to be a minimalist lightbox module.
Fluidbox v1.3.1
Update & bug fix: Removed timer in JS, and rely on CSS3's very own transition-delay
instead. This fixes the issue of rapid clicking causing the enlarged image not showing up.
Fluidbox 1.3
Some significant code base revision has occurred. The imagesLoaded plugin is no longer a dependency, as Fluidbox now checks for image load independently for each thumbnail, instead of a top-down, universal approach done previously (which can slow down initialization of Fluidbox if there are many images on a single page).
Also made some bug fixes.
Fluidbox v1.2.7
Added a new option to determine how much the z-index should change between different states of Fluidbox. Also fixed a minor issue with the transitionend event not being unbound.
Fluidbox v1.2.6
This version includes bug fixes for Mozilla Firefox that does not seem to register the transitionend
event properly. For crucial functionalities, I have fallen back to using native timer function (setTimeout
and clearTimeout
) in JavaScript instead.
Fluidbox v1.2.5
Major bugfix for stacking context issues and white flash. Added new option to set the a common z-index reference point for all FB elements. Users can change this to elevate/drop the z-index value of FB elements as of when they see fit, if necessary.