I am using the LazyLoad plugin on a column of images and it works fine in Chrome and Firefox but its messing up in Safari 5.1.7. When scrolling past the fold images are looping within the first data-original. Any ideas why?
$(function() {
$("img.scale-with-grid").lazyload({
effect : "fadeIn",
});
});
Try setting the css for the images to display:block.
Related
the mmenu sliding has an lagging effect... is it possible to do with CSS3 transitions ? the jquery mobile doesnt have this problem... but I need this plugin mmenu help me...
The problem is only on mobile devices ... on computer it works smooth...
jQuery(function() {
jQuery('nav#menu').mmenu({
classes: 'mm-light',
},{
transitionDuration : 0,
});
});
I tried to disable with "transitionDuration" but no luck...
While using Kendo UI Upload control I am facing a UI issue that I am unable to resolve as in FF, Chrome and IE10 its fine. But, in IE9 the UI is little bit distorted when status message is displayed.
After observing in IE developer tool, I found the following difference in the rendered HTML. Please refer the image -
In IE10 the status-message is wrapped inside a div with class k-dropzone. But, in IE9 there is no wrapper for that. What could be the solution for this?
Thanks
Perhaps padding div containing the file upload control will spread out the elements a little:
#fileUpload {
padding:15px,15px,0px,15px;
clear:both;
}
Using jquery 1.8.3, with http://www.appelsiini.net/2012/lazyload-180
effect:'fadeIn' no longer works on images that are hyperlinked?
If the image is just standalone the fadeIn works fine, but if wrapped in an anchor tag the image just appears without any effect.
Does anyone know a solution?
I'm using http://colorpowered.com/colorbox/ and jquery Tokeninput without problems - untill I combine them and want to tokenize an input field in an colorbox.
I load my file in a iframe through colorbox and jquery Tokeninput loads up suggestions just fine untill I want to touch one of the items in the populated list.
All is good on my regular computer. The problem only exist when using iPad/iPhone (hav'nt tried other touch devices).
Any ideas as to where the problem belongs? I'm not sure whether it's colorbox or jquery Tokeninput to blame?
Just to check I loaded http://loopj.com/jquery-tokeninput/demo.html in a colorbox - same problem. The demo page works just fine on iPad when not in an colorbox.
/anders
denmark
I've been having similar problems with other contents in colourbox. I think the problem is that iPhone Safari doesn't support position:fixed;
I'm having a really strange issue, I have a flowplayer video, and next to that is an image that when clicked shows in a fancybox, in webkit, mozilla it works fine, but IE decides to put the video in front of the slide.
I thought this might be related to the z-index, but everything seems fine there. Fancybox gives the loading image a z-index of 1200 which is way above what it needs to be.
Here is a link to the page
http://bit.ly/bEechI
i got the same problem, if i figure it out, i'll let u kno
answer: changing the wmode to transparent should fix it.
flowplayer("myDiv", {src: '/flowplayer.swf', wmode: 'transparent'}, {
// flowplayer config
});