[jQuery] Re: Adding carousel to gallery help please

2008-12-17 Thread expat101

if i jump by clicking the thumb to the 6th image, i can then loop the
rest

On Dec 18, 1:55 am, expat101 nwn.webmas...@gmail.com wrote:
 Can someone help me with my gallery please

 why does it stop after the 5th image? all i get is a black/blank
 container?

 http://illusionz.x24hr.com/?q=content/welcome

 and how can i add a carousel to the gallery so it auto starts and
 loads the images?


[jQuery] Re: Adding carousel to gallery help please

2008-12-17 Thread expat101

how can i add jquery cycle to this??
http://malsup.com/jquery/cycle/download.html

http://illusionz.x24hr.com/?q=content/welcome#undefined

http://devkick.com/lab/galleria/

link href=galleria.css rel=stylesheet type=text/css
media=screen
script type=text/javascript src=jquery.js/script
script type=text/javascript src=jquery.galleria.js/script
script type=text/javascript
jQuery(function($) { $('ul.gallery').galleria(); });
/script




On Dec 18, 1:55 am, expat101 nwn.webmas...@gmail.com wrote:
 Can someone help me with my gallery please

 why does it stop after the 5th image? all i get is a black/blank
 container?

 http://illusionz.x24hr.com/?q=content/welcome

 and how can i add a carousel to the gallery so it auto starts and
 loads the images?


[jQuery] Adding carousel to gallery help please

2008-12-17 Thread expat101

Can someone help me with my gallery please

why does it stop after the 5th image? all i get is a black/blank
container?

http://illusionz.x24hr.com/?q=content/welcome

and how can i add a carousel to the gallery so it auto starts and
loads the images?



[jQuery] Re: How to achieve 2 moo gallery effects?

2008-12-10 Thread expat101

hey thanks a lot i have a look at them.


On Dec 10, 3:30 am, Paul Mills [EMAIL PROTECTED] wrote:
 Have a look at these two plugins:

 Galleria -http://devkick.com/lab/galleria/

 Cycle -http://malsup.com/jquery/cycle/

 Paul

 On Dec 9, 5:57 am, expat101 [EMAIL PROTECTED] wrote:

  I am looking for gallery and slideshow effects like these, can i
  achieve them with jquery and how please

 http://tools.yootheme.com/yootools/extensions/yoogallery.html

 http://smoothgallery.jondesign.net/showcase/gallery/#myGallery-picture(4)


[jQuery] How to achieve 2 moo gallery effects?

2008-12-08 Thread expat101

I am looking for gallery and slideshow effects like these, can i
achieve them with jquery and how please

http://tools.yootheme.com/yootools/extensions/yoogallery.html

http://smoothgallery.jondesign.net/showcase/gallery/#myGallery-picture(4)



[jQuery] How can i do Image rollover with simple gamma change?

2008-11-24 Thread expat101

I would like to have an image rollover with just basic gamma change to
highlight an image...can this be done with basic jquery?


[jQuery] Re: How can i do Image rollover with simple gamma change?

2008-11-24 Thread expat101

hi, thanks for all the replies

how can i achieve something like here
http://www.linn-bad.no/

the 9 thumbs rollover with increased gamma

cheers


On Nov 25, 8:58 am, Jeffrey Kretz [EMAIL PROTECTED] wrote:
 Opacity would fade in the image as a whole, rather than adjusting its
 brightness/contrast (which is more what gamma would adjust).

 I don't know how fancy you want to get, but you could absolutely position a
 div in front of the image, set for white (or black) and adjust its opacity
 from 0 to some small percentage (10%, maybe?) as a highlight.

 jQuery.fn.gammaGlow = function(color,opacity){

    return this.each(function(i){

       var img = $(this);
       var css = $.extend({
            display:'none',
            position:'absolute',
            backgroundColor:color,
            opacity:opacity,
            width:img.width(),
            height:img.height()
       },img.position())

       $('div/div')
          .css(css)
          .insertAfter(img)
          .fadeIn()
          .fadeOut(function(){$(this).remove();})
    });

 };
 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On

 Behalf Of Andy Matthews
 Sent: Monday, November 24, 2008 1:34 PM
 To: jquery-en@googlegroups.com
 Subject: [jQuery] Re: How can i do Image rollover with simple gamma change?

 Yes...

 You can use the animate method to fade in/out any element by applying
 opacity.

 andy

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of expat101
 Sent: Monday, November 24, 2008 3:04 PM
 To: jQuery (English)
 Subject: [jQuery] How can i do Image rollover with simple gamma change?

 I would like to have an image rollover with just basic gamma change to
 highlight an image...can this be done with basic jquery?