Hello again,
I stumbled upon this tumblr-theme: http://studioannahaas.tumblr.com/
I very much like the scroll effect and the possibility of more images of one project in one frame (a bit like your carousel). My question is now: is it possible to program an addon for me that can do this? And how much would that cost?
-
Scroll-Effect
-
Hey anna!
If you combine the magnetic slides addon with the carousel addon then it's kind of like in the theme. You just wont have that same scrolling effect.
I don't have time to code a custom addon for you, sry. -
Hello Armin,
Thanks for your answer.
Slowly I manage to use your fantastic tool. One feature would be very good for me: it is a kind of vertical, magnetic scroll-effect: this would help structure my about page. See a very nice example of someone who did exactly what I'm looking for, but I can't figure our how it is done. Can you help me?
Herer is the web-site and I'm talking about the link "work": http://www.bnag.cc/Thank you very much for your help.
Cheers
Anna -
That's done with custom Javascript, like
http://stackoverflow.com/questions/4034659/is-it-possible-to-animate-scrolltop-with-jqueryjQuery("html, body").animate({ scrollTop: "300px" });
It shouldn't be 300px but the position of where you want to go. And it should happen on click.
You will need to know some basic JavaScript to do that though.