I really need to know what flash photo gallery is used on this site?
http://www.shad0w.ru/impression.html
Also do you know any similar javascript script?
the gallery is:
http://www.simpleviewer.net/simpleviewer/
there are plenty of JavaScript photo galleries available -
one i like is http://devkick.com/lab/galleria/demo_01.htm
hope that helps.
Related
Is it possible to embed a certain portion of a site into a wordpress page? For example, If I want to embed stackoverflow to my site, and be able to scroll only to a predermined feel how would I accomplish this?
I tried using
<iframe src="http://www.example.com"></iframe>
But that only shows a tiny portion and not exactly what I want it to show.
Is there a better way to mimic an embedded element of another site to even mimic the scroll so it's like its really part of the site.The page source is too much to comb through.
Hope you guys can help!
Thanks i'm still a noob.
This morning, I've tried making a puzzle in jQuery, and I'm pretty close to done, and I want to allow people to use their own images, but I can't figure out how to do it in jQuery, can it even be done in jQuery?
here's a link to the website if needed
Nice work. The easiest way to let users play with their own photos would be to ask for a link and then just replace the src attribute of your #puzzleContainer img element. Otherwise you'd have to upload the file using a file upload jquery plugin. This seems mighty popular.
I like how Lightbox does that overlay window that displays the full size image link. Is there a way to load an html file like that? I would like to have pictures, text, maybe an embedded youtube video too all able to load in that "Virtual Window", Vertical scrolling would be nice too. I would like to avoid jquery or other things like that. Like just Java, html, and css would be nice. But if that isn't possible I can handle calling the jquery if need be.
Thanks in advance to all you savvy people!
Eva
Recently, I've spent a lot of time trying to find nice no-jQuery lightbox. And I only needed to display images, not videos or HTML. My searches failed so in the end I had to give up and include jQuery in my site.
Once you give up have a look at Jquery Colorbox.
It has directly implemented display of images, YouTube or other videos as well as dynamically loaded HTML. See their examples.
Unfortunatelly, this library requires JQuery
My website has tons of large images that reduces my site speed. I want to load all of the images of my website after the website is loaded without them.
What is the best solution to do that??? I want it in jQuery. Any NICE JQUERY PLUGIN suggestion is appreciated.
Thanks in advance.
My favorite is http://www.appelsiini.net/projects/lazyload
I used to do this on my ASP pages.
Just create all your images tags like this
<img ID="img_1"/>
Once this is done, with Jquery :
$(document).ready(function(){
document.img_1.src="YourImageUrl";
});
There you go, as soon as your page is done loading the content, it will show all your images.
Does anyone know a lightbox in which I can load pages? I found one called lightbox-gone-wild but I am having problems with it.
http://fancybox.net/ ... I've used it with good results in the past.