Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

Any 2.0 demo pages out there?


Project:GalleryView
Version:2.0
Component:Documentation
Category:support request
Priority:critical
Assigned:Unassigned
Status:active (needs more info)
Description

Has anyone been able to find a Demo page for the 2.0 version. I'm excited to try it out, but the with documentation site missing data I'm unable to find a 2.0 demo.

Thanks.

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

#1

Status:active» closed

found this one:
http://appleton.me/galleryview/

#2

THANK YOU!!!

#3

Status:closed» active (needs more info)

http://danadoumani.com/portfolio-res.htm

but anyone who can help me get the page to load faster or make the script files work with a separate set of independent thumbnails, please let me know :)

#4

Hope this helps a few people out there,

After some digging I found the appleton.me examples
http://www.system.com.tr/jsgal.asp?n=16

http://www.lisamarie.biz/OPENHOUSE/IFRAME/SlidingScrollbar_Directory_Ifr...

And this example too
http://www.catosplace.net/blogs/personal/?p=399

Some of my own questions About Galleryview 2.0:
- Anyone know how to modify the above appleton.me example to a panels only example?
like http://spaceforaname.com/panels.html

- Navigational arrows are appearing as either "red crosses" in IE or "question marks"
in Safari, anyone got a fix for this? I notice they keep coming up as

src="undefinedlight/panel-nav-next.png"

even when they appear to have been linked correctly.

#5

Hello,

For Panel only, use the example:

<div id="photos" class="galleryview">
<ul id="gallery">
<li><img src="image.gif" alt="image1" /></li>
</ul>
</div>

And in the initialization script:

<script type="text/javascript">
$(document).ready(function(){
$('#photos').galleryView({
panel_width: 762,
panel_height: 249,
transition_speed: 1500,
transition_interval: 5000,
nav_theme: 'dark',
border: '1px solid white',
pause_on_hover: true,
show_panels: true, <----- IMPORTANT
show_filmstrip: false <----- IMPORTANT
});
});
</script>

Good luck! ;-)

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.