flexslider

FlexSlider 2 caption flicker on chrome

橙三吉。 提交于 2019-12-12 14:25:40
问题 I'm having some flickering in my captions on chrome: http://tyni.cc/flexsliderissue In safari everything runs fine. Anyone knows what is wrong? Thanks, Daniel 回答1: I use Flexslider pretty regularly and also found the same problem. Setting the 'useCSS' property to 'false' fixed it for me. Didn't get to the bottom of why it was happening though. Hope this helps. 回答2: Add these CSS properties to your listitem to fix it -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms

Woothemes Flexslider - one unique flexslider inside another flexslider - is it posible?

回眸只為那壹抹淺笑 提交于 2019-12-12 09:59:16
问题 I am using the newest flexslider from Woothemes, and I am trying to init one flexslider inside another. Like this: function initFrontpageSliders() { $('#flexsliderFrontpage01').flexslider({ animation: "slide", animationLoop: false, pauseOnHover: true, start: function(slider) { //Fires when the slider loads the first slide $('#flexsliderFrontpage02').flexslider({ animation: "fade", directionNav: false, animationLoop: false, pauseOnHover: true }); } }); } but when I call the script, is

Flexslider - image preloader

青春壹個敷衍的年華 提交于 2019-12-12 08:03:51
问题 I have a problem with my responsive flexslider plugin. The plugin works fine unless you have many images in the actual slideshow. The loading behavior is then just not acceptable. I was hoping someone can help me with the following flexslider image preloader script since I can't get it to work. Here is the code I'm using: FLEXSLIDER HTML <div class="slider"> <div class="flexslider loading" style="overflow-x: hidden; overflow-y: hidden; "> <ul class="slides" style="width: 5200%; -webkit

Container height issue using flexslider 2 only on IOS device

南笙酒味 提交于 2019-12-12 06:28:46
问题 I have a flexslider slideshow with an image and a spot for featured text. On the full site it starts with the image to the left and the featured text area to the right (floated). Both of these items are in a containing div with a black background. When the screen is shrunk down I have through media queries made the image go on top and the featured text area go below it and both are 100%. They are relative so content below it changes position based on the amount of text in the featured text

FlexSlider and Fancybox

孤街浪徒 提交于 2019-12-12 05:28:03
问题 i'll try to build a slider with FlexSlider the images in the slider should be viewed 'onclick' with Fancybox. my code for now: $(".slides li").fancybox(); $('#flex1').flexslider({ animation: "slide", animationLoop: false, itemWidth: 179, itemMargin: 0, minItems: 4, maxItems: 4, controlNav: false, pauseOnHover: true, slideshowSpeed: 5000, keyboardNav: true, slideshow: false, }); in document ready the HTML / PHP looks like this: <div class="flexslider" id="flex1"> <ul class="slides home_single

Flexslider - show tooltip while mouse hover on dots

。_饼干妹妹 提交于 2019-12-12 04:29:12
问题 I am using http://flexslider.woothemes.com/ flex slider plugin in my page. Below is my code for flexslider: html: <div class="flexslider"> <ul class="slides"> <li>Image 1</li> <li>Image 2</li> <li>Image 3</li> </ul> </div> js: java script code for flex slider and this code is used to initialize the flex slider while page load. $(window).load(function() { $('.flexslider').flexslider({ animation: "slide", slideshow: false, controlNav: true, directionNav: false, easing: "swing" }); }); All, I

Flexslider not loading properlly

大城市里の小女人 提交于 2019-12-12 03:57:12
问题 I never saw a similar problem. When I load the page the flexslider doesn't load, but when I open chrome's web inspector or firebug it loads. On iPad the same thing, it doesn't load when the page is loaded and when I touch and hold down-up it loads.. I'm loading the css file, lib file and calling the flexslider function normally inside a $(function(){...}) : $('.flexslider').flexslider({ animation: "slide", animationLoop: true, itemWidth: 215, minItems: 2 }); and also tried $(window).load Has

JS error after AJAX get/load

こ雲淡風輕ζ 提交于 2019-12-12 02:05:47
问题 i have a wordpress blog where i have post with a flexslider (plugin's name is meta slider). Now i have a page on that blog that loads a div's content dynamically with AJAX from posts. code is the following: $(".post-link").click(function(){ var post_link = $(this).attr("href"); $("#refpage-single-post-container").html("content loading"); $.get(post_link, function(result){ $result = $(result); $result.find('div.entry-content').appendTo('#refpage-single-post-container'); $result.find('script')

FlexSlider : get the caption vertically on right side

一曲冷凌霜 提交于 2019-12-12 01:55:04
问题 I'm using the cool Felxslider to display a slideshow on a sharepoint installation. it works quite well, but i still have two questions : 1- How to display the caption ( you know, the little transparent background with title/description of the picture ) not on the bottom of the image, but on the right side ? And not hover the picture, if possible. 2- I have N images to whos, but the slider always shows N+N images, the first extra ones are clones of the images, but the last is always just blank

Add a captions to integrated FlexSlider on Wordpress Organictheme.

江枫思渺然 提交于 2019-12-12 00:44:09
问题 Would like to add a caption to FlexSlider, which is integrated into a purchased Wordpress Organictheme. I believe the slideshow page code must be modified and though I have found some similar issues here, I have not figured out (after many hours and failed attempts) where and what exactly to add to the existing code. Seems like captions should be a no-brainer! Seems like they should somehow be included within the tags??? Would REALLY APPRECIATE some help. html, but NOT php literate. THANK YOU