dave h requested this tip its a simple zoom transition when yiu hover over a photo without clicking full size
a.next_photo_link img:hover {transform:scale(1.20);-ms-transform:scale(1.20);-o-transform:scale(1.20);-webkit-transform:scale(1.20);-moz-transform:scale(1.20);-webkit-transition:all 1s ease-out;-moz-transition:all 1s ease-out;transition:all 1s ease-out;-ms-transition:all 1s ease-out;-o-transition:all 1s ease-out;}
its only a 20% zoom but for larger pics any more then that would be too much i think
to adjust the finished zoom level adjust the scale:1.20 (meaning 120% or 20% above normal)
u can slow or speed up the transition by changing the 1s tip you can use decimals like 3.5s or even ms like 10ms for a very fast transition
(note for newbies to css the -webkit- etc prefixes are used to increae browser compatability so if you adjust 1 adjust all so the experience is the same no matter what browser)
Tags:

Permalink Reply by soaringeagle on June 13, 2012 at 9:20pm haha..umm ..that means u like it? haha
Permalink Reply by dave on June 14, 2012 at 4:40am Yes and thanks very much soaringeagle for your help, It'sa work of art :-)

Permalink Reply by soaringeagle on June 14, 2012 at 8:06am was nothing i mean u saw it took me less then a minute or 2 to throw it together for you
Permalink Reply by Scott Bishop on June 15, 2012 at 5:50pm Do you place that code into the custom code box or the appearance section?

Permalink Reply by soaringeagle on June 15, 2012 at 5:53pm appearance css
Permalink Reply by Erik Woods on June 15, 2012 at 9:05pm When you use vendor prefixes, I believe it is best practice to list the prefixes first, and the standard declaration (without prefix) last. I believe Dan Cederholm mentions it in CSS3 for Web Designers but I can't recall where. But basically, it is to future-proof your code for browsers which will eventually drop the vendor prefixes and use the standard...... or something like that.
In other words...
Change this:
transform:scale(1.20);
-ms-transform:scale(1.20);
-o-transform:scale(1.20);
-webkit-transform:scale(1.20);
-moz-transform:scale(1.20);
-webkit-transition:all 1s ease-out;
-moz-transition:all 1s ease-out;
transition:all 1s ease-out;
-ms-transition:all 1s ease-out;
-o-transition:all 1s ease-out;
To this:
-ms-transform:scale(1.20);
-o-transform:scale(1.20);
-webkit-transform:scale(1.20);
-moz-transform:scale(1.20);
transform:scale(1.20);
-webkit-transition:all 1s ease-out;
-moz-transition:all 1s ease-out;
-ms-transition:all 1s ease-out;
-o-transition:all 1s ease-out;
transition:all 1s ease-out;

Permalink Reply by soaringeagle on June 16, 2012 at 8:52am hmm interesting ill keep that in mind
does anyone have an example?
i would like to see it first :)

Permalink Reply by soaringeagle on June 16, 2012 at 8:50am i know... I meant I want to see a site implementing this code...
I would like to see how it looks :)
Permalink Reply by George H. Compton IV on June 20, 2012 at 3:17pm I'm using this code you can check it out here
http://friendlyfaces.ning.com/photo/419210-383033358379815-10000019...

caro replied to Phil McCluskey's discussion 'Site Manager Updates for Ning 3.0 Networks'
John Bizley replied to John Bizley's discussion 'I have a Question about the Social Channels ( youtube, vimeo )' in the group The Sandbox
Writer Chick {Diane} replied to John Bizley's discussion 'Show Your Ning 3.0 Sites'

© 2013 Created by Ning.
