[jQuery] Re: Shadowbox Media Viewer

2008-02-08 Thread osdave



mjijackson wrote:
 http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/
Hi Michael,
Thanks a lot for this piece of art, it's awesome!
I'm installing it in my e-shop but i'm having trouble with IE7 (it's working
fine in IE6... how weird is that?).
The thing is that the image appears, but at the bottom of the browser
window.
You can see it 
http://www.amantis.net/pruebas/product_info.php?products_id=978 here (NSFW) 
(it's an adult toys shop, no pr0n, hope you don't mind).
I've tried a lot of thing, but I'm not so good with JS.
Any idea of why? Where should I look?
Thanks in advance.

David
-- 
View this message in context: 
http://www.nabble.com/Shadowbox-Media-Viewer-tp15086121s27240p15363121.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Shadowbox Media Viewer

2008-02-08 Thread Mike Alsup
I think you'll have better luck using a strict doctype rather than running
in quirks mode.


On Feb 8, 2008 3:18 PM, osdave [EMAIL PROTECTED] wrote:




 mjijackson wrote:
  http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/
 Hi Michael,
 Thanks a lot for this piece of art, it's awesome!
 I'm installing it in my e-shop but i'm having trouble with IE7 (it's
 working
 fine in IE6... how weird is that?).
 The thing is that the image appears, but at the bottom of the browser
 window.
 You can see it
 http://www.amantis.net/pruebas/product_info.php?products_id=978 here
 (NSFW)
 (it's an adult toys shop, no pr0n, hope you don't mind).
 I've tried a lot of thing, but I'm not so good with JS.
 Any idea of why? Where should I look?
 Thanks in advance.

 David
 --
 View this message in context:
 http://www.nabble.com/Shadowbox-Media-Viewer-tp15086121s27240p15363121.html
 Sent from the jQuery General Discussion mailing list archive at Nabble.com
 .




[jQuery] Re: Shadowbox Media Viewer

2008-02-08 Thread osdave



malsup wrote:
 I think you'll have better luck using a strict doctype rather than running
 in quirks mode.
YOU'RE DA MAN :jumping:, thanks a lot, it was just that!
See you.
ps: if you like something from my store, just ask :wistle:
-- 
View this message in context: 
http://www.nabble.com/Shadowbox-Media-Viewer-tp15086121s27240p15364799.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Shadowbox Media Viewer

2008-01-30 Thread Michael J. I. Jackson


;) I thought you'd like that.

Michael

On Jan 29, 2008, at 12:17 PM, Aaron Heimlich wrote:

And you got my extensible file extension -- plugin mappings  
request in

there too! Woot!

On Jan 29, 2008 4:29 AM, Michael J. I. Jackson  
[EMAIL PROTECTED] wrote:



Hi all,
Just wanted to let you all know that the jQuery adapter has been  
updated
to include the kind of sweet jQuery functionality that Mike is  
talking about
in this email. Head on over and give it a shot if you haven't  
already.


http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

Thanks,

Michael

On Jan 25, 2008, at 4:20 PM, Mike Alsup wrote:

I'm putting the finishing touches on a media viewer application  
that I
coded up recently (think Thickbox). It can be used with jQuery or  
any

other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.




Michael,

I really love what you've done with shadowbox.  But I dislike  
having to
add specific markup to drive the behavior.  And as a jQuery user I  
really

want to invoke it like this (for example):

$('a[href$=swf]').shadowbox();

So if you're open to suggestion, I'd love to see a minor  
modification.
Here's what I changed to make it more amendable to the jQuery  
calling style.


1.  Added this method to shadowbox.js (just below the current  
setup fn):


Shadowbox.setup2 = function(links){
for(var i = 0, len = links.length; i  len; ++i)
setupLink(links[i]);
};

2.  Added this to shadowbox-jquery.js:

jQuery.fn.shadowbox = function() {
Shadowbox.setup2(this);
};


Now I can call it like this without having to change any markup  
anywhere,

so it becomes a drop-in replacement:

$(function() {
var options = { /* whatever */ };
Shadowbox.init(options);

$('a[href$=swf]').shadowbox();
});


Of course there are more restrictions than one might expect from a
traditional jQuery plugin (like not being able to pass options on  
a per-call

basis), but it's a pretty minor change.  Food for thought.

Mike






--
Aaron Heimlich
Web Developer
[EMAIL PROTECTED]
http://aheimlich.freepgs.com




[jQuery] Re: Shadowbox Media Viewer

2008-01-30 Thread blaf

Does it work with an imagemap?

Blaise


[jQuery] Re: Shadowbox Media Viewer

2008-01-29 Thread Michael J. I. Jackson


Thanks Rick. It was a great idea. Don't forget the tip button...I'll  
be here all week. ;)


Michael

On Jan 28, 2008, at 6:22 AM, Rick Faircloth wrote:



Hi, Michael...

Just wanted to let you know that the added drag feature is  
working great!


Thanks and congratulations on a great piece of work!

Rick


-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery- 
[EMAIL PROTECTED] On Behalf Of Michael J.

I. Jackson
Sent: Sunday, January 27, 2008 3:17 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Shadowbox Media Viewer


Hi Rick,

On Jan 25, 2008, at 9:03 AM, Rick Faircloth wrote:



I may use this on the real estate sites that I'm working on, because
I wanted a viewer that would allow large images to be displayed  
using

maximum space allowed by the viewport of the browser.  Your plug-in
seems
to accommodate that requirement.

One thing I didn't notice that I would really love to have is the
ability
take a large image that won't fit within the viewport and allow the
user
to be able to either grab the image with a click-and-hold so they
can
move image around in the viewport to see the initially unviewable
parts (think
panorama), or to have a mouseover that would allow the image to
auto-scroll
horizontally (and vertically) depending on the location of the
mouse pointer
to the center of the photo.


Just wanted to let you know that I incorporated this feature in this
evening. I just uploaded a fresh copy of code to the server and you
should find what you're looking for there. ;)

Good luck with your project,

Michael








[jQuery] Re: Shadowbox Media Viewer

2008-01-29 Thread Michael J. I. Jackson

Hi all,

Just wanted to let you all know that the jQuery adapter has been  
updated to include the kind of sweet jQuery functionality that Mike  
is talking about in this email. Head on over and give it a shot if  
you haven't already.


http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

Thanks,

Michael

On Jan 25, 2008, at 4:20 PM, Mike Alsup wrote:


I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.


Michael,

I really love what you've done with shadowbox.  But I dislike  
having to add specific markup to drive the behavior.  And as a  
jQuery user I really want to invoke it like this (for example):


$('a[href$=swf]').shadowbox();

So if you're open to suggestion, I'd love to see a minor  
modification.  Here's what I changed to make it more amendable to  
the jQuery calling style.


1.  Added this method to shadowbox.js (just below the current  
setup fn):


Shadowbox.setup2 = function(links){
for(var i = 0, len = links.length; i  len; ++i)
setupLink(links[i]);
};

2.  Added this to shadowbox-jquery.js:

jQuery.fn.shadowbox = function() {
Shadowbox.setup2(this);
};


Now I can call it like this without having to change any markup  
anywhere, so it becomes a drop-in replacement:


$(function() {
var options = { /* whatever */ };
Shadowbox.init(options);

$('a[href$=swf]').shadowbox();
});


Of course there are more restrictions than one might expect from a  
traditional jQuery plugin (like not being able to pass options on a  
per-call basis), but it's a pretty minor change.  Food for thought.


Mike





[jQuery] Re: Shadowbox Media Viewer

2008-01-29 Thread Mike Alsup
That's awesome, Michael.  Thank you!


Hi all,
 Just wanted to let you all know that the jQuery adapter has been updated
 to include the kind of sweet jQuery functionality that Mike is talking about
 in this email. Head on over and give it a shot if you haven't already.

 http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

 Thanks,

 Michael

 On Jan 25, 2008, at 4:20 PM, Mike Alsup wrote:

 I'm putting the finishing touches on a media viewer application that I
  coded up recently (think Thickbox). It can be used with jQuery or any
  other library. I created an adapter for jQuery, and I thought that
  somebody on this list might be interested.
 
 

 Michael,

 I really love what you've done with shadowbox.  But I dislike having to
 add specific markup to drive the behavior.  And as a jQuery user I really
 want to invoke it like this (for example):

 $('a[href$=swf]').shadowbox();

 So if you're open to suggestion, I'd love to see a minor modification.
 Here's what I changed to make it more amendable to the jQuery calling style.

 1.  Added this method to shadowbox.js (just below the current setup fn):

 Shadowbox.setup2 = function(links){
 for(var i = 0, len = links.length; i  len; ++i)
 setupLink(links[i]);
 };

 2.  Added this to shadowbox-jquery.js:

 jQuery.fn.shadowbox = function() {
 Shadowbox.setup2(this);
 };


 Now I can call it like this without having to change any markup anywhere,
 so it becomes a drop-in replacement:

 $(function() {
 var options = { /* whatever */ };
 Shadowbox.init(options);

 $('a[href$=swf]').shadowbox();
 });


 Of course there are more restrictions than one might expect from a
 traditional jQuery plugin (like not being able to pass options on a per-call
 basis), but it's a pretty minor change.  Food for thought.

 Mike





[jQuery] Re: Shadowbox Media Viewer

2008-01-29 Thread Aaron Heimlich
And you got my extensible file extension -- plugin mappings request in
there too! Woot!

On Jan 29, 2008 4:29 AM, Michael J. I. Jackson [EMAIL PROTECTED] wrote:

 Hi all,
 Just wanted to let you all know that the jQuery adapter has been updated
 to include the kind of sweet jQuery functionality that Mike is talking about
 in this email. Head on over and give it a shot if you haven't already.

 http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

 Thanks,

 Michael

 On Jan 25, 2008, at 4:20 PM, Mike Alsup wrote:

 I'm putting the finishing touches on a media viewer application that I
  coded up recently (think Thickbox). It can be used with jQuery or any
  other library. I created an adapter for jQuery, and I thought that
  somebody on this list might be interested.
 
 

 Michael,

 I really love what you've done with shadowbox.  But I dislike having to
 add specific markup to drive the behavior.  And as a jQuery user I really
 want to invoke it like this (for example):

 $('a[href$=swf]').shadowbox();

 So if you're open to suggestion, I'd love to see a minor modification.
 Here's what I changed to make it more amendable to the jQuery calling style.

 1.  Added this method to shadowbox.js (just below the current setup fn):

 Shadowbox.setup2 = function(links){
 for(var i = 0, len = links.length; i  len; ++i)
 setupLink(links[i]);
 };

 2.  Added this to shadowbox-jquery.js:

 jQuery.fn.shadowbox = function() {
 Shadowbox.setup2(this);
 };


 Now I can call it like this without having to change any markup anywhere,
 so it becomes a drop-in replacement:

 $(function() {
 var options = { /* whatever */ };
 Shadowbox.init(options);

 $('a[href$=swf]').shadowbox();
 });


 Of course there are more restrictions than one might expect from a
 traditional jQuery plugin (like not being able to pass options on a per-call
 basis), but it's a pretty minor change.  Food for thought.

 Mike





-- 
Aaron Heimlich
Web Developer
[EMAIL PROTECTED]
http://aheimlich.freepgs.com


[jQuery] Re: Shadowbox Media Viewer

2008-01-28 Thread Rick Faircloth

Hi, Michael...

Just wanted to let you know that the added drag feature is working great!

Thanks and congratulations on a great piece of work!

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
 Michael J.
 I. Jackson
 Sent: Sunday, January 27, 2008 3:17 AM
 To: jquery-en@googlegroups.com
 Subject: [jQuery] Re: Shadowbox Media Viewer
 
 
 Hi Rick,
 
 On Jan 25, 2008, at 9:03 AM, Rick Faircloth wrote:
 
 
  I may use this on the real estate sites that I'm working on, because
  I wanted a viewer that would allow large images to be displayed using
  maximum space allowed by the viewport of the browser.  Your plug-in
  seems
  to accommodate that requirement.
 
  One thing I didn't notice that I would really love to have is the
  ability
  take a large image that won't fit within the viewport and allow the
  user
  to be able to either grab the image with a click-and-hold so they
  can
  move image around in the viewport to see the initially unviewable
  parts (think
  panorama), or to have a mouseover that would allow the image to
  auto-scroll
  horizontally (and vertically) depending on the location of the
  mouse pointer
  to the center of the photo.
 
 Just wanted to let you know that I incorporated this feature in this
 evening. I just uploaded a fresh copy of code to the server and you
 should find what you're looking for there. ;)
 
 Good luck with your project,
 
 Michael





[jQuery] Re: Shadowbox Media Viewer

2008-01-27 Thread Michael J. I. Jackson


Hi Rick,

On Jan 25, 2008, at 9:03 AM, Rick Faircloth wrote:



I may use this on the real estate sites that I'm working on, because
I wanted a viewer that would allow large images to be displayed using
maximum space allowed by the viewport of the browser.  Your plug-in  
seems

to accommodate that requirement.

One thing I didn't notice that I would really love to have is the  
ability
take a large image that won't fit within the viewport and allow the  
user
to be able to either grab the image with a click-and-hold so they  
can
move image around in the viewport to see the initially unviewable  
parts (think
panorama), or to have a mouseover that would allow the image to  
auto-scroll
horizontally (and vertically) depending on the location of the  
mouse pointer

to the center of the photo.


Just wanted to let you know that I incorporated this feature in this  
evening. I just uploaded a fresh copy of code to the server and you  
should find what you're looking for there. ;)


Good luck with your project,

Michael



[jQuery] Re: Shadowbox Media Viewer

2008-01-27 Thread Michael J. I. Jackson

Hi Aaron,

On Jan 26, 2008, at 2:48 AM, Aaron Heimlich wrote:


Very impressive stuff! A couple of comments:

1. Everything that Mike Alsup said
2. You should take a look at the file extension -- plugin mappings  
in Mike's media plugin[1] as it's much more extensive than yours  
for roughly the same list of plugins


What file types are you wanting to play? The application is really  
suited best for viewable content, not audio. From the list you sent  
me, I didn't see any picture or movie types that I don't support  
(besides RealPlayer, and that was on purpose).


3. Make the extension -- plugin mappings extensible (this is  
particularly useful for the external player)


Good idea. ;)

Michael



[1] http://dev.jquery.com/browser/trunk/plugins/media/ 
jquery.media.js#L180


On Jan 25, 2008 3:45 AM, mjijackson [EMAIL PROTECTED] wrote:

Hello all,

I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.

http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

Enjoy,

Michael



--
Aaron Heimlich
Web Developer
[EMAIL PROTECTED]
http://aheimlich.freepgs.com




[jQuery] Re: Shadowbox Media Viewer

2008-01-27 Thread Aaron Heimlich
On Jan 27, 2008 2:20 AM, Michael J. I. Jackson [EMAIL PROTECTED] wrote:

 What file types are you wanting to play?


I'll have to double check, but the only thing I can think of right now that
Shadowbox doesn't support is PDF files.


 The application is really suited best for viewable content, not audio.
 From the list you sent me, I didn't see any picture or movie types that I
 don't support (besides RealPlayer, and that was on purpose).


Well, Mike's extension -- plugin mappings for Quicktime are bigger than
yours, but with extensible extension -- plugin mappings that won't matter
much.



 3. Make the extension -- plugin mappings extensible (this is particularly
 useful for the external player)


 Good idea. ;)

 Michael


 [1] http://dev.jquery.com/browser/trunk/plugins/media/jquery.media.js#L180

 On Jan 25, 2008 3:45 AM, mjijackson [EMAIL PROTECTED] wrote:

 
  Hello all,
 
  I'm putting the finishing touches on a media viewer application that I
  coded up recently (think Thickbox). It can be used with jQuery or any
  other library. I created an adapter for jQuery, and I thought that
  somebody on this list might be interested.
 
  http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/
 
  Enjoy,
 
  Michael
 



 --
 Aaron Heimlich
 Web Developer
 [EMAIL PROTECTED]
 http://aheimlich.freepgs.com





-- 
Aaron Heimlich
Web Developer
[EMAIL PROTECTED]
http://aheimlich.freepgs.com


[jQuery] Re: Shadowbox Media Viewer

2008-01-26 Thread Aaron Heimlich
Very impressive stuff! A couple of comments:
1. Everything that Mike Alsup said
2. You should take a look at the file extension -- plugin mappings in
Mike's media plugin[1] as it's much more extensive than yours for roughly
the same list of plugins
3. Make the extension -- plugin mappings extensible (this is particularly
useful for the external player)

[1] http://dev.jquery.com/browser/trunk/plugins/media/jquery.media.js#L180

On Jan 25, 2008 3:45 AM, mjijackson [EMAIL PROTECTED] wrote:


 Hello all,

 I'm putting the finishing touches on a media viewer application that I
 coded up recently (think Thickbox). It can be used with jQuery or any
 other library. I created an adapter for jQuery, and I thought that
 somebody on this list might be interested.

 http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

 Enjoy,

 Michael




-- 
Aaron Heimlich
Web Developer
[EMAIL PROTECTED]
http://aheimlich.freepgs.com


[jQuery] Re: Shadowbox Media Viewer

2008-01-26 Thread Michael J. I. Jackson

Scratch that...I've got it worked out now...ugghh...


On Jan 25, 2008, at 10:42 PM, Michael J. I. Jackson wrote:

 Hmm...one email to the jQuery mailing list and an obscure post in  
 the Ext.js forums and 20 hours and 687 downloads later I've  
 exceeded my bandwidth. ;) Bummer...

 Well...while I look for new hosting, anybody who is still  
 interested in getting this code can get it from Google Code (where  
 it was hosted in the first place).

 michaeljackson.googlecode.com

 I should be back up and running within a few days, just time enough  
 to transfer the domain registration.

 Thanks,

 Michael

 On Jan 25, 2008, at 4:57 PM, Mike Alsup wrote:

 I think I over simplified this.  There will need to be a few other  
 changes.
 But you see where I'm going...


 Of course there are more restrictions than one might expect from a
 traditional jQuery plugin (like not being able to pass options on  
 a per-call
 basis), but it's a pretty minor change.  Food for thought.

 Mike






[jQuery] Re: Shadowbox Media Viewer

2008-01-26 Thread Michael J. I. Jackson

Hmm...one email to the jQuery mailing list and an obscure post in the  
Ext.js forums and 20 hours and 687 downloads later I've exceeded my  
bandwidth. ;) Bummer...

Well...while I look for new hosting, anybody who is still interested  
in getting this code can get it from Google Code (where it was hosted  
in the first place).

michaeljackson.googlecode.com

I should be back up and running within a few days, just time enough  
to transfer the domain registration.

Thanks,

Michael

On Jan 25, 2008, at 4:57 PM, Mike Alsup wrote:

 I think I over simplified this.  There will need to be a few other  
 changes.
 But you see where I'm going...


 Of course there are more restrictions than one might expect from a
 traditional jQuery plugin (like not being able to pass options on  
 a per-call
 basis), but it's a pretty minor change.  Food for thought.

 Mike





[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Karl Swedberg


Wow, Michael, that is gorgeous! Very smooth. Haven't looked at the  
code yet, but the presentation is outstanding. Fantastic work!



--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Jan 25, 2008, at 4:45 AM, mjijackson wrote:



Hello all,

I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.

http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

Enjoy,

Michael




[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Jean

=O

killerrr!
On Jan 25, 2008 1:26 PM, Karl Swedberg [EMAIL PROTECTED] wrote:

 Wow, Michael, that is gorgeous! Very smooth. Haven't looked at the
 code yet, but the presentation is outstanding. Fantastic work!


 --Karl
 _
 Karl Swedberg
 www.englishrules.com
 www.learningjquery.com



 On Jan 25, 2008, at 4:45 AM, mjijackson wrote:

 
  Hello all,
 
  I'm putting the finishing touches on a media viewer application that I
  coded up recently (think Thickbox). It can be used with jQuery or any
  other library. I created an adapter for jQuery, and I thought that
  somebody on this list might be interested.
 
  http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/
 
  Enjoy,
 
  Michael





-- 

[]´s Jean
www.suissa.info

   Ethereal Agency
www.etherealagency.com


[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Rey Bango


Absolutely great work Michael. And I love the fact that it's lib agnostic.

Rey,,...

mjijackson wrote:

Hello all,

I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.

http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

Enjoy,

Michael



[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Sean Catchpole
Awesome work Michael.

I love the title font, excellent choice. Glad to see it's library
independent.

~Sean

On Jan 25, 2008 3:45 AM, mjijackson [EMAIL PROTECTED] wrote:


 Hello all,

 I'm putting the finishing touches on a media viewer application that I
 coded up recently (think Thickbox). It can be used with jQuery or any
 other library. I created an adapter for jQuery, and I thought that
 somebody on this list might be interested.

 http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

 Enjoy,

 Michael



[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Rey Bango


Get working on it Klaus! :D

Klaus Hartl wrote:

On Jan 25, 10:45 am, mjijackson [EMAIL PROTECTED] wrote:

Hello all,

I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.

http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

Enjoy,

Michael


Great stuff! Is this the beginning of some more library agnostic
plugins? Tabs anyone? ;-)


--Klaus



[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Penner, Matthew

Wow!  This is great!  Good jo!

Matt Penner
Database Engineer II
GIS Support
[EMAIL PROTECTED]
(951) 940-6108 x10709

-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of mjijackson
Sent: Friday, January 25, 2008 1:45 AM
To: jQuery (English)
Subject: [jQuery] Shadowbox Media Viewer


Hello all,

I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.

http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

Enjoy,

Michael


[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Rey Bango


Great work Michael:

http://ajaxian.com/archives/library-agnostic-lightbox

Rey

mjijackson wrote:

Hello all,

I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.

http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

Enjoy,

Michael



[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Rick Faircloth

I may use this on the real estate sites that I'm working on, because
I wanted a viewer that would allow large images to be displayed using
maximum space allowed by the viewport of the browser.  Your plug-in seems
to accommodate that requirement.

One thing I didn't notice that I would really love to have is the ability
take a large image that won't fit within the viewport and allow the user
to be able to either grab the image with a click-and-hold so they can
move image around in the viewport to see the initially unviewable parts (think
panorama), or to have a mouseover that would allow the image to auto-scroll
horizontally (and vertically) depending on the location of the mouse pointer
to the center of the photo.

Any plans for options like these.  (Or hopefully, after a cursory glance at the
description of the options, some way to do this already?)

Thanks for the great work... and I did notice the Tip Jar  ;o)

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
 Alexandre
 Plennevaux
 Sent: Friday, January 25, 2008 10:35 AM
 To: Jquery-en
 Subject: [jQuery] Re: Shadowbox Media Viewer
 
 
 Michael, this is indeed GORGEOUS is the word. Fantastic, i bet  in one month 
 we'll see this
 one everywhere.
 
 -- Original Message --
 To:  Jquery-en (jquery-en@googlegroups.com)
 From: Karl Swedberg ([EMAIL PROTECTED])
 Subject: [jQuery] Re: Shadowbox Media Viewer
 Date: 25/1/2008 16:26:52
 
 Wow, Michael, that is gorgeous! Very smooth. Haven't looked at the
 code yet, but the presentation is outstanding. Fantastic work!
 
 
 --Karl
 _
 Karl Swedberg
 www.englishrules.com
 www.learningjquery.com
 
 
 
 On Jan 25, 2008, at 4:45 AM, mjijackson wrote:
 
 
  Hello all,
 
  I'm putting the finishing touches on a media viewer application that I
  coded up recently (think Thickbox). It can be used with jQuery or any
  other library. I created an adapter for jQuery, and I thought that
  somebody on this list might be interested.
 
  http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/
 
  Enjoy,
 
  Michael
 
 
 
 





[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Alexandre Plennevaux

Michael, this is indeed GORGEOUS is the word. Fantastic, i bet  in one month 
we'll see this one everywhere.

-- Original Message --
To:  Jquery-en (jquery-en@googlegroups.com)
From: Karl Swedberg ([EMAIL PROTECTED])
Subject: [jQuery] Re: Shadowbox Media Viewer
Date: 25/1/2008 16:26:52

Wow, Michael, that is gorgeous! Very smooth. Haven't looked at the
code yet, but the presentation is outstanding. Fantastic work!


--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Jan 25, 2008, at 4:45 AM, mjijackson wrote:


 Hello all,

 I'm putting the finishing touches on a media viewer application that I
 coded up recently (think Thickbox). It can be used with jQuery or any
 other library. I created an adapter for jQuery, and I thought that
 somebody on this list might be interested.

 http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

 Enjoy,

 Michael







[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Michael J. I. Jackson

Rick,

That is an excellent idea! Hadn't thought of that one. You've got the  
wheels inside my head turning now... ;)

Michael

On Jan 25, 2008, at 9:03 AM, Rick Faircloth wrote:


 I may use this on the real estate sites that I'm working on, because
 I wanted a viewer that would allow large images to be displayed using
 maximum space allowed by the viewport of the browser.  Your plug-in  
 seems
 to accommodate that requirement.

 One thing I didn't notice that I would really love to have is the  
 ability
 take a large image that won't fit within the viewport and allow the  
 user
 to be able to either grab the image with a click-and-hold so they  
 can
 move image around in the viewport to see the initially unviewable  
 parts (think
 panorama), or to have a mouseover that would allow the image to  
 auto-scroll
 horizontally (and vertically) depending on the location of the  
 mouse pointer
 to the center of the photo.

 Any plans for options like these.  (Or hopefully, after a cursory  
 glance at the
 description of the options, some way to do this already?)

 Thanks for the great work... and I did notice the Tip Jar  ;o)

 Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:jquery- 
 [EMAIL PROTECTED] On Behalf Of Alexandre
 Plennevaux
 Sent: Friday, January 25, 2008 10:35 AM
 To: Jquery-en
 Subject: [jQuery] Re: Shadowbox Media Viewer


 Michael, this is indeed GORGEOUS is the word. Fantastic, i bet  in  
 one month we'll see this
 one everywhere.

 -- Original Message --
 To:  Jquery-en (jquery-en@googlegroups.com)
 From: Karl Swedberg ([EMAIL PROTECTED])
 Subject: [jQuery] Re: Shadowbox Media Viewer
 Date: 25/1/2008 16:26:52

 Wow, Michael, that is gorgeous! Very smooth. Haven't looked at the
 code yet, but the presentation is outstanding. Fantastic work!


 --Karl
 _
 Karl Swedberg
 www.englishrules.com
 www.learningjquery.com



 On Jan 25, 2008, at 4:45 AM, mjijackson wrote:


 Hello all,

 I'm putting the finishing touches on a media viewer application  
 that I
 coded up recently (think Thickbox). It can be used with jQuery or  
 any
 other library. I created an adapter for jQuery, and I thought that
 somebody on this list might be interested.

 http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

 Enjoy,

 Michael










[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Michael J. I. Jackson

Thanks Rey! Wow...I hope my new little blog can handle all the  
traffic. ;)

Michael

On Jan 25, 2008, at 9:50 AM, Rey Bango wrote:


 Great work Michael:

 http://ajaxian.com/archives/library-agnostic-lightbox

 Rey

 mjijackson wrote:
 Hello all,
 I'm putting the finishing touches on a media viewer application  
 that I
 coded up recently (think Thickbox). It can be used with jQuery or any
 other library. I created an adapter for jQuery, and I thought that
 somebody on this list might be interested.
 http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/
 Enjoy,
 Michael



[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Jörn Zaefferer


mjijackson schrieb:

Hello all,

I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.

http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/
  

Thats wicked beatiful and all!

The only thing I can think of is a different, or rather slightly 
modified gallery mode: Putting the controls into a fixed position, eg. 
lower left/right and keeping them while switching between images. The 
position should be configurable based on the gallery, eg. if there is a 
certain maxiumum size, they could be placed accordingly.


Gonna integrate it on my site as soon as I find the time anyway :-)

Thanks
Jörn


[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Klaus Hartl

On Jan 25, 10:45 am, mjijackson [EMAIL PROTECTED] wrote:
 Hello all,

 I'm putting the finishing touches on a media viewer application that I
 coded up recently (think Thickbox). It can be used with jQuery or any
 other library. I created an adapter for jQuery, and I thought that
 somebody on this list might be interested.

 http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/

 Enjoy,

 Michael

Great stuff! Is this the beginning of some more library agnostic
plugins? Tabs anyone? ;-)


--Klaus