lightbox

jquery lightbox plugin: Bug on IE7 and IE8!

前提是你 提交于 2019-12-04 21:31:20
I wonder if anyone has used this lightbox plugin and encountered a bug on IE < 9 ? It keeps crashing my IE8, and IE7, but it is ok on IE9. Any idea how to fix it? or any other alternatives? I would like to use this lightbox plugin because it allows me to embed videos from youtube and vimeo. Other lightbox plugins which allow me to run videos will be perfect! Thanks. EDIT: Found the bug - jquery-1.6.min.js !!! It works fine now with - https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js I always encounter buggy things with jquery-1.6.min.js! Hating it! Regarding lightboxing I always

Isotope - filtered images - how to only show the visible (filtered) images in lightbox (or shadowbox JS)

让人想犯罪 __ 提交于 2019-12-04 15:36:40
I am building a wordpress website. I am implementing isotope for image layout and filtering ( isotope.metafizzy ) I have configured Isotope already, so that images are layed out and filterable, this is all working fine. I am using a custom template of NextGen Gallery to generate the necessary image thumbnails and code for isotope to pick up. I want to open the images inside a lightbox so that the larger versions can be viewed (probably using Lightbox2 in wordpress - but maybe will use Shadowbox JS) THE ISSUE: Currently, when i open an image in the lightbox, it loads all the images in the

Block scroll when Lightbox appears

自闭症网瘾萝莉.ら 提交于 2019-12-04 14:56:47
I use DOM window script for Lightboxes on my website. Is there any way to block scroll on main page when Lightbox appears and unblock when it disappears? Or, maybe, you can advice better Lightbox script? Thanks. User this to disable or enable window scrollbar : document.body.style.overflow="hidden"; on show your lightbox and document.body.style.overflow="visible"; on hiding your lightbox. but if your are really looking for a better lightbox library you can try this jQuery plugin : jQuery Lightbox Plugin 来源: https://stackoverflow.com/questions/5527663/block-scroll-when-lightbox-appears

jQuery lightbox Gallery

夙愿已清 提交于 2019-12-04 11:52:03
问题 Does a jQuery plug-in exist with standard lightbox functionality? In the "lightbox" window I'd like to show the current image and the rest as thumbnails somewhere (left, bottom, etc.) in the same "lightbox" window. 回答1: ColorBox - A light-weight, customizable lightbox plugin for jQuery jQuery 1.3.2+ in Firefox, Safari, Chrome, Opera, Internet Explorer 6, 7, 8, 9, 10. 回答2: I've found Thickbox to be very easy and very flexible to use. 回答3: Another option is slimbox 2. It is a visual clone of

jQuery Colorbox, iframe content not scrolling in iPad

放肆的年华 提交于 2019-12-04 11:29:09
Colorbox iframe content does not scroll when viewed on iPad please read below: https://github.com/jackmoore/colorbox/issues/41#issuecomment-5244379 When displaying a web page that is larger than the dimensions set for the colorbox from an Ipad, the ability to scroll is disabled and/or does not exist. Some might suggest one finger or two fingered scrolling, this does not work. Pre-reqs: Own an Ipad, or go down to local best buy Steps to reproduce: Go to http://colorpowered.com/colorbox/core/example1/index.html Click on Outside Webpage (Iframe) link, Enter something into the Google Search

lightbox no image just text?

拜拜、爱过 提交于 2019-12-04 10:11:59
I am currently using light box provided by ... http://leandrovieira.com/projects/jquery/lightbox/ How do I have it so that if I click on a work it brings up the light box and shows text instead of an image? what I want is the terms and conditions shown up in a lightbox. HTML <span id="terms"> <a href="">Terms & Conditions</a></span> jQuery $(function () { $('#terms a').lightBox(); }); It seems like this lightbox plugin only works with images. You should choose another plugin like colorbox: http://jacklmoore.com/colorbox/ It's simple to use and supports iframes and also div elements inside the

Simple & small, pure javascript lightbox (dialog overlay)? [closed]

青春壹個敷衍的年華 提交于 2019-12-04 09:03:04
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Does anyone know of a small, limited functionality lightbox built with pure javascript? This is for an embeddable widget, thus the reason of not using jquery. All I really need is creating an overlay for a specific div or simply by passing some HTML. 回答1: There's a great list/comparison of lightboxes here. You

How to place autocomplete menu above the text input?

痴心易碎 提交于 2019-12-04 08:09:27
Is there any way to display the Autocomplete result set above the text input? The problem is that I am using it in a lighbox application. The background element being set to 100% of the pages' height and width, it will naturally not expand with its content. So if the content above the text box increases so much that the input is forced towards the bottom of the page, and then the user types something into it, the autocomplete menu appears, and the input being towards the end of the page, the menu causes scrollbars to appear Since the background element (dark colored) won't expand to

Smallest jQuery lightbox script

孤街浪徒 提交于 2019-12-04 07:48:29
What's the smallest lightbox plugin for jQuery (in terms of size)? Something close to Fancybox , but smaller :) I have used this sometime ... http://www.digitalia.be/software/slimbox2 It's only 4K . I wrote a low-level jQuery lightbox script called Nitelite : https://github.com/premasagar/nitelite (it's 1.4KB when minified and gzipped) It is the kind of thing that can be either used on its own, or to build more feature-rich lightbox plugins. It's been used in production on a couple of projects: the BBC World Service widget (click a news article): http://www.bbc.co.uk/persian/services/2009/05

jquery: How can I reset the document scrollbar when I append a layer over the document?

懵懂的女人 提交于 2019-12-04 06:15:47
问题 How can I reset the document scrollbar when I append a layer over the document? For instance, it is like the facebook page when you have a very long document and you need to scroll down to see the older images/ posts, When you click on the photos, the scrollbar has changed - it is started from the top, but the document page does not jump at all, When you close the photo viewer layer, the scrollbar returns to as it was before, but the page does not jump. This is my working code so far, but it