Will check it out, thanks Charlie!
On Sat, Dec 26, 2009 at 6:06 PM, Charlie wrote:
> to answer question "is this doable in jQuery"...yes it certainly is.
>
> I would suggest using the cycle plugin due to it's robust API. The right
> tabs can be managed the same as any of the pager examples, jus
to answer question "is this doable in jQuery"...yes it certainly is.
I would suggest using the cycle plugin due to it's robust API. The
right tabs can be managed the same as any of the pager examples, just
adjust your css accordingly. The text is handled by creating absolute
positioned contain
Greetings,
Take a look at this website please:
http://new.music.yahoo.com/
You can see in the middle the flash slideshow that shows pix in
middle, overlayed with text and on the right column a title, ofcourse
clicking on different titles activate the related image with text.
I looked at the plug
issue with implementing Cycle that causes the images to be much
smaller than actual size at random because a fixed width and height
aren't set in the CSS for them.
On Nov 7, 5:53 am, chulo wrote:
> hello,
>
> I have integrated a jquery slideshow in a webpage which appears correctly in
>
$('ReyX').ready(function() {
Hi, you can try set the outline of div to none, like this:
$('#s1').cycle().css('outline','none');
Bye
});
2009/11/7 Regis Sabino
> Hi
>
> 2009/11/7 chulo
>
>
>> hello,
>>
Hi
2009/11/7 chulo
>
> hello,
>
> I have integrated a jquery slideshow in a webpage which appears correctly
> in
> mozilla, but when testing in all IE explorers a border appears around the
> image that rotates during the transition.
>
> http://alexanderlloyd.info
hello,
I have integrated a jquery slideshow in a webpage which appears correctly in
mozilla, but when testing in all IE explorers a border appears around the
image that rotates during the transition.
http://alexanderlloyd.info/touba/
(it's the small image halfway down the page)
A
Hi all,
I have a slideshow using only cycle with a scroll horz. I have six
thumbs, three visible at first with prev and next arrows to see the
other three. I also have an automatic transition through each thumb
but when it gets to the fourth thumb, it doesn’t scroll. Is this
possible with cycle? T
Am I crazy to try this? I'm trying to see if I can put a slideshow
(any type.. I'd like to maybe just use a slideUp/slideDown shuffle of
photos onClick) in an accordian type navigation. Here's the page.
Tell me if i'm crazy, I'm new. Thanks in advance. =)
http://fromdavy.com/jtran/
Hi,
I want to use jquery slideshow. I have a side menu bar with 15
different options. When I choose an option from menu bar, different slide
shows must appear in the same div.
I would really appreciate if any body can help me with this.
Shravan.
Basically, I can click the next button and go forward until it reaches
the last slide then it sticks. The Back button is also broken. This
code works great with 1.3.1 and 1.2.6 but has the aforementioned bugs
in 1.3.2
$(document).ready(function() {
var fadeSpeed = 1000;
var cu
Hi I am new to javascript and am having a lot of trouble with a photo
slide show I am creating for a website- I used a jQuery based program
called Galleria. Here is my problem-
Galleria creates thumbnails for you from your images- you make an
unordered list in which you put all the img tags.
Whate
hi
i need a slieshow effec that i want to create for my personal website.
following is what i need
i want to display an image and below that will be text and this text
should be clickable and open in a new window and this way i want to
show few images and text with a certain duration for each.
rt I can't
figure out -- how can I modify my "next()" line to ignore images tagged with
the class "manual"?
Any help would be appreciated... I have been banging my head on this for
awhile (not being particularly skilled in Javascript and totally new to
Jquery).
--
Hi everyone,
I'm looking for an image slideshow using carousel thumbnails as well
as a spotlight for an enlarged version of the thumbnails. YUI has one
that *almost* does what I need (http://developer.yahoo.com/yui/
examples/carousel/csl_dynload2_clean.html), however it doesn't allow
for portrait
Looks like you are missing jQuery itself. Get that in there and you
may have better luck.
Also you should use Firefox with the Firebug plugin that'll help you
better trouble shoot issues.
On Apr 6, 10:52 am, "c.gray" wrote:
> Hello,
>
> I am trying to implement the jqeury slideshow (http://ma
Hello,
I'm having trouble getting the Jquery slideshow to function properly.
Here is my code:
[code]
http://www.w3.org/1999/xhtml";>
jQuery Slideshow
$(document).ready(function(){
$('#s1').cycle({
f
Hello,
I am not able to get the jquery slideshow to work. It seems like it
should be so simple but I can't figure out where I'm going wrong.
Here is the url to my site:
http://sarahmadeit.com/slideshow/demo/
I would greatly appreciate any suggestions as to where I am going
wron
Hello,
I am trying to implement the jqeury slideshow (http://malsup.com/
jquery/cycle/) to function on my site. it seems so simple, but for
some reason the previous and next buttons are not working. Here is my
URL: http://sarahmadeit.com/slideshow/demo/
This is just a test to see if I can get it
I have been searching for a jQuery slideshow plugin that can load in
images using ajax. But I am having a really hard time finding one.
Does anyone have any recommendations for one?
I’m looking for someone to do a little work for me and I wondered if
one of you might be able to help.
What I am essentially trying to achieve is a sliding thumbnail viewer
with lightbox effects ultimately for use within Joomla 1.5.
Essentially what I want to combine is the lightbox enlargement
I am brand new to JQuery, but very excited over it. I have looked at
s3Slider and similar packeges, but they all seem to get their images
statically, either by referencing a folder or by just referring to
them ("1.jpg, 2.jpg, "). I have a database with image paths
(images/woof1.jpg), for e
My point was the recursion :) I know that it iterates wrong.
my last post should be :
>> pos++;
> > if( pos == $imgs.length )
> > pos = 0; // rewind
On 28 Sie, 17:52, Ariel Flesler <[EMAIL PROTECTED]> wrote:
> No, your code will hide and show back the last item.
> If I'm
No, your code will hide and show back the last item.
If I'm wrong, the code I gave you works as expected.
--
Ariel Flesler
http://flesler.blogspot.com
On Aug 28, 12:27 pm, admi99 <[EMAIL PROTECTED]> wrote:
> Thank you :) However it isn't what I need :)
> At First :
> shouldn't it be more like th
Thank you :) However it isn't what I need :)
At First :
shouldn't it be more like that :
$imgs.eq( pos ).fadeOut("slow", function(){
if( pos == $imgs.length )
pos = 0; // rewind
else pos++;
$imgs.eq( pos ).fadeIn("slow", slide );
});
Secondly,
stil there's recu
var pos= 0,
$imgs;
function slide(){
$imgs.eq( pos++ ).fadeOut("slow", function(){
if( pos == $imgs.length )
pos = 0; // rewind
$imgs.eq( pos ).fadeIn("slow", slide );
});
);
// Wait for document ready to start the magic
$(function(){
$imgs = $('img.foo');
I'd like to do slideshow by myself but I've met some problems.
This example is quite simplified:
var pos= 0;
slide = function(){
currImg[pos].fadeOut("slow", function(){
curImg[pos+1].fadeIn("slow", slide() );
}
pos = pos + 1;
);
}
It's wrong example because of recursion.
How can it be made?
Hello,
I’m looking for a jQuery plugin to load dynamically and cycle big
images.
I need a plugin, that reads images from a directory or an array, but
the current image must be read only if needed,
not all at once.
For example: 500 images 800x300px, only one (random or next) image is
actually dis
does anyone know a plugin or a way to slide divs from left to right ?
i found some ways but only with images, and im not very good at
programming so i coudln't do it with .animation it didn't work very
well
Hi there,
this is more a general question than a jQuery based one, but maybe jQuery
really is the thing to implement this.
I have to create a slideshow with an unknown amount of images. The person
that is managing the content doesn't want to edit any source code or
something when uploading
Hi Folks
Everbody probably know SlideShow from
http://interface.eyecon.ro/demos/slideshow.html
It is nice but dont have a way to href the caption to something.
I am trying but change function dont do what I hope, so probably I am in
wrong way.
$($(".slideshowCaption
").text()).change($(".slide
On 03/05/2007, at 3:23 AM, [EMAIL PROTECTED] wrote:
IS there anyway to not have the slideshow:
http://interface.eyecon.ro/demos/slideshow.html
show the photo's sort of in a vertical line until they all load.
I think CSS could solve this. Maybe you could just set the ul to
position:relative a
ssage -
From: <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Wednesday, May 02, 2007 1:23 PM
Subject: [jQuery] Jquery slideshow plugin, unstyled content
IS there anyway to not have the slideshow:
http://interface.eyecon.ro/demos/slideshow.html
show the photo's sort o
IS there anyway to not have the slideshow:
http://interface.eyecon.ro/demos/slideshow.html
show the photo's sort of in a vertical line until they all load.
It really makes me not want to use this particular setup, even though
it's perfect for what I want.
There really are not to many slideshow typ
34 matches
Mail list logo