Image Zoom effect

How is this effect accomplished?
http://www.collegian.psu.edu/archive/2009/11/16/student_section_to_shift_in_20.aspx 
Speciffically if you click the image of the seating chart to the right it enlarges.  I looked at the source and there is a small bit of javascript but I can't understand it.  Is it simple or some 3rd party piece?  Thanks for the help!

Hi
First it is not java but javascript, there is a big difference between the two.
When trying to incorporate anything new into a web page it is always better to start with a blank html page, and create what is generally know as a 'proof of concept'. This ensures that you get to understand how to do something without other code getting in the way.
The links too the two js files, (mootools.js and remooz.js) go in the head content of your page, along with the link to the css file.
The code shown in the 'how to use' section of the tutorial goes inside the script tags as indicated below, (also inside the head content, but after the links to the js files.
<script type="text/javascript">
               /* <![CDATA[ */
                    insert the code here
               /* ]]> */
          </script>
You the create an unordered list with a class name of thumbnails and place your image references in this list -
<ul class="thumbnails">
     <li>
          <a link to large image goes here>
               <img src= link to small image here/>
          </a>
     </li>
     <li>
          <a href="http://yourwebsitefolder.imagenamelarge.jpg" title="It is an image" >
               <img src="http://yourwebsitefolder.imagenamesmall.jpg" />
          </a>
     </li>
The various items in the ReMooz.assign can be customized to your requirements, see - http://digitarald.de/project/remooz/1-0/showcase/simple-caption/.
PZ

Similar Messages

  • I'm on FCPX 10.1.1.  Is there a way to change the speed of a keyframe effect?  I have still images zooming onto the storyline, but I can't find any way to speed up or slow down the zoom time.  Any help would be greatly appreciated.

    Is there a way to change the speed of a keyframe zoom effect on still photos?  Clip duration doesn't seem to change the zoom speed at all.  Any help would be greatly appreciated

    Open the video animation (Control-v). In transform>All click and drag the X and Y keyframes (which should be together) – left to speed up the scale change and right to slow it down . It may take a little practice to get this to work (I seldom get it right the first try).
    You could do this individually for each clip, or you wanted to adjust multiple clips you can copy and paste attributes to your other other clips.
    Russ

  • Cannot see zoom effect

    After setting up a zoom on a still image it looks fine when using "play output"  in the pan/zoom tool preview window but when I return to the timeline view and play that clip it doesn't display properly. Instead it shows the initial frame with something looking like the zoom effect going on behind it.
    Can I not view the actual zoom effect for a clip after setting it up and returning to the timeline view?  I will be grateful for any insight.
    Still image is a .psd 1613 x 1080 in a project that is HD 1080i 1920 x 1080 (so the still image has black bars at both sides--which is the way I want it)
    OS: Windows 7 Ultimate x64

    Thank you to all three of you (Steve, Vipul, Bill) who took the time to answer and make suggestions.
    I have uploaded two videos showing : 1) view in effect preview window and 2) view in timeline.
    However, I think I may have done something wrong to begin with because when I created a new project and used the same source psd file to do the same kind of zoom effect it displayed perfectly both in the effect preview window and in the timeline.
    Accordingly, because I can do what I want to do--get the proper zoom effect--I'm not going mess around with that original clip anymore.
    What I did wrong with the original clip, I don't know, but I think that perhaps I was trying to make the orginal clip too short and that messed up the program. The new project clip with zoom that I created was a few seconds long.

  • How do I create a magnifying glass zoom effect?

    I'm building an image 'showcase of work' website site. Each html page features a selection of thumbnails on one side linked to a main image on the other.  I am trying to find out how to create something like a zoom effect 'magnifying glass' so that the user can hover over the main image to zoom in within a confined circle or square in more detail, which moves with the mouse whilst hovering over the image. I'm sure you all know what I mean!  (just in case, please see attached html file showing the page layout)  (I also don't want to get too techy/over complicate things as I'm learning as I go). I want to be able to use this feature throughout the site, therefore, I guess it's another CSS rule that I need to apply...?
    I'm hoping someone can point me in the right direction to find some sort of step by step 'how to' do this.  I can't seem to find just what I'm looking for... maybe I'm not calling it by the right terminology!
    I'm currently using Design Premium CS4 (predominantly Dreamweaver, Photoshop and a little Flash)
    Cheers....

    Hi
    Magiczoom and lightbox are used for showing enlarged versions of images etc. similar to using a separate pop-up window (but without the annoyance of pop-up windows).
    Anythingzoomer is a magnifying glass effect and works as such.
    PZ

  • Problem with the zoom effect

    I have five images in a row and I have added a zoom effect to
    the rollover and rollout effects. What I have noticed is that the
    image only zooms out when I bring the mouse out from the bottom of
    the image. If I try to bring the mouse from left to right across
    the images the first image zooms in but not out, and this happens
    for all five images. Can anyone identify what I am doing wrong?
    Here is my code:
    <mx:HBox width="100%" horizontalAlign="center">
    <mx:Image source="@Embed('images/bistro9-1.jpg')"
    scaleX=".05" scaleY=".05" rollOver="doZoom(event)"
    rollOut="doZoom(event)"
    click="showImage('images/bistro9-1.jpg')"/>
    <mx:Image source="@Embed('images/bistro9-2.jpg')"
    scaleX=".05" scaleY=".05" rollOver="doZoom(event)"
    rollOut="doZoom(event)"
    click="showImage('images/bistro9-2.jpg')"/>
    <mx:Image source="@Embed('images/bistro9-3.jpg')"
    scaleX=".05" scaleY=".05" rollOver="doZoom(event)"
    rollOut="doZoom(event)"
    click="showImage('images/bistro9-3.jpg')"/>
    <mx:Image source="@Embed('images/bistro9-4.jpg')"
    scaleX=".05" scaleY=".05" rollOver="doZoom(event)"
    rollOut="doZoom(event)"
    click="showImage('images/bistro9-4.jpg')"/>
    <mx:Image source="@Embed('images/bistro9-5.jpg')"
    scaleX=".05" scaleY=".05" rollOver="doZoom(event)"
    rollOut="doZoom(event)"
    click="showImage('images/bistro9-5.jpg')"/>
    </mx:HBox>
    <mx:Zoom id="zoomAll" zoomWidthTo="0.06"
    zoomHeightTo="0.06" zoomWidthFrom=".05" zoomHeightFrom=".05" />
    public function doZoom(event:MouseEvent):void {
    if (zoomAll.isPlaying) {
    zoomAll.reverse();
    else {
    // If this is a ROLL_OUT event, play the effect backwards.
    // If this is a ROLL_OVER event, play the effect forwards.
    zoomAll.play([event.target], event.type ==
    MouseEvent.ROLL_OUT ? true : false);

    I figured out the problem I was having with my zoom effect.
    It worked when I added a specific number for height and width.
    Before I had a percent. Try adding a height and width number, it
    worked for me.

  • Pan and zoom effect

    Hi there,
    How do you create a pan and zoom effect, like a video effect, on a picture? The technical term I believe is the Ken Burns effect from a still imagery. I know it can be done in Adobe Premiere, Final Cut Pro but I want to know if it is possible in InDesign (CS6). It tried the overlays option but it only created pan and zoom effect that the viewer needs to scroll. It want it to move by itself.  I hope that makes sense ))
    Thanks.

    "Make sure that the container frame is smaller than the image. If the width or height of the frame and image are the same size, the object is treated as scrollable content."
    http://helpx.adobe.com/digital-publishing-suite/help/pan-zoom-overlays.html

  • Pan and Zoom Effect, which PE version introduced it?

    I like my PE 3.0 but it does not seem to offer the Pan and Zoom effect. Or am I just not seeing it.  Does anyone know which later version introduced it? I know 8.0 has it, but when did it come along?  The bundled version of Photoshop 5.0 it came with has a pan slide show, just discovered it.
    Also, I am familiar with keyframes, would this be helpful with 3.0 pan? or do I need a newer version.  Any tutorials good for this?
    thank you

    Pan & Zoom is available in all versions that offer Keyframing on the fixed Effects>Motion>Scale (Zoom) and Motion>Position (Pan). What might have been introduced would be Presets to do those with "one button." Do not know when those came into being. I do not use them in PrE 4, and would not in PrE 8, or 9, as I want control, and also the ability to determine what MY subject is, in an image. No amount of AI can do that for me, so a simple Preset stands about a zero chance of doing exactly what I want.
    At some point, PSE added the automatic Random Pan & Zoom. Again, were I doing a slideshow in it, I would not apply such, as i would Keyframe Motion>Position and Motion>Scale in PrE.
    In PrE 3, I feel strongly that you have the Effects Control Panel (accessed via Edit Effects for a Clip/still), and the ability to Keyframe both Motion>Scale and Motion>Position. This allows one adjust the parameters for those Effects over time, i.e. create a Zoom, and create a Pan. Other than the fact that you do these by hand, by eye and by mind, but with ultimate control, you have the features - just not automatically applied via a single button.
    Good luck,
    Hunt

  • Random pan & zoom effects?

    I'm trying to create a movie from a lot of still images and I would like to have a pan & zoom effect to each image, but not the exact same to every image.
    Is there a way to have a random pan & zoom effect applied to all images?

    Steve: Thanks so much. As I am now just finding that I may be able to pan & zoon stills, but on my PE7 I cannot find a more button anywhere in order to select your import presets as below. Please help.
    Thanks Tom
    o install this set of presets in Premiere Elements:
    1. Unzip this file to a folder on your hard drive
    2. Open Premiere Elements' Effects and Transitions panel
    3. From the More button, select Import Presets
    4. Browse to the prfpset files, select them all (hold down the Shift key and select the first, then the last) and then Open
    5. The presets will appear in your My Presets folder

  • HTML Widget zooming effect

    Hi,
    I am trying to make my HTML Widgets in my iBooks Author book to being fired up when user taps on a small button in the side of the book.
    For that sake, I place my widget first, then I drag my small button graphic to the widget area so it becomes the poster image of it.
    Problem is that when I test my book and I tap on the button, there's always a "zooming effect" of the button prior to execute the Widget itself, that enlarges the little png for a little while, so it shows the big pixel jagged image. I don't like this effect, is there any way to get rid of it?
    Thank you,
    Ignacio

    I am just using finally this workaround:
    1) Place the HTML widget as usual, but without poster image, nor Title, Background... so it is sort of a "transparent hot spot" in the book
    2) I draw a figure with text inside, as a button, and organize it so it lies below this transparent widget
    When I run the book in the iPad, I see a crisp, clear button that I cap tap and the Widget plays at full screen without that annoying jagged PNG zoomed in.
    Same thing if you use an image button rather than a figure.
    Greetings,
    Ignacio

  • Using Slider to Control an Image Zoom

    I want to use the control Slider1 to Control the Zoom of Sectional Viewer image control.  Can't quite figure that out.  Any help?

    Hi Matthew,
    Until the feature is available, there is a possible workaround you could use. It requires more work but you could probably get something close to a zoom effect.
    The trick is to change the size of the image (Width and Height) and its
    X and Y position to control where the zoom happens. The Image will end-up taking more space than the screen so you will need to have elements on top of it so the user does not see the overflow.
    For example, to zoom on the top left corner, try the following:
    - Set the image Image Position property to Fill
    - Set the image Height and Width properties to its current value +
    ZoomSlider!Value*10
    If you want to zoom to the center:
    - Also set the image X and Y properties to their current values +
    ZoomSlider!Value*5
    Remember the image visual will be quite large and you will need to place elements on top of it (e.g. rectangles) to hide the overflow.
    This is clearly a workaround yet you can get close to a zoom effect.
    Olivier

  • Image zoom component

    Hi,
    I'm looking for a good image zoom component with:
    - zoom in / zoom out
    - loading external jpg/gif/png
    - preview navigation thumbnail
    - drag to move image
    I know "google is my best friend" but al what I find is old
    mcs not really
    user friendly, so if you know such a component...
    thx,
    lea

    your link is busted, but I got a better one for you. It's a
    view finder, you can resize it and tween it smaller so It gives it
    a zoom effect! so whatever is inside of it, is what you are going
    to see in your flash? cool eh, it's one of my most used objects?
    The prob is, I don't know a link for it. my friend give it to
    me. I can hook you up with it though a email though. SO since I
    can't find your email,
    Email me: [email protected] and remind me about this
    convo and ask for the Z-cam I have. Cool? peace.

  • Is there a way to create a pan and zoom effect in a lightroom slideshow?

    Is there a way to create a pan and zoom effect in a lightroom slideshow?

    Nope. Be a great feature. For that I use FotoMagico after exporting JPEG's from LR.

  • Daily Edition 950 - Image Zoom Could be Better

    Daily Edition 950 - Zoom Could be Better
    One of the best uses I can think of for the daily edition is to function as a navigation device on which to store maps.
    I am pleased with my daily edition 950, but I have tested the zoom capabilities of images and they could be better.
    It appears that the zoom amount is based on a predetermined variable (it looks like a maximum of 200% of the initial screen image size). It would be better if zoom amount was based on the size of the image rather than the arbitrary screen size. Since it is not, image resolution and image size do not matter at all which ends up limiting users to low resolution images.
    Please include a map function or better zoom controls in the next software update!

    it is a problem i am worry too. c#  image zoomer  shouldnot lower image quality or it will be absolutely absurb for us. thank you for paying attention to the situation.

  • End()'ing a zoom effect

    Hey All-
    I'm having a problem whenever I issue an "end()" command for
    a sequence event that's running, and I have a zoom effect. Below is
    a quick example. Clicking the stop button during the parallel/fade
    will break it, clicking stop during the zoom works fine. Looks like
    line 420 is dumping out in ZoomInstance.as. If anyone can help, I'd
    appreciate it.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical">
    <mx:Text text="Move me" id="tomove" fontSize="20"
    visible="false" />
    <mx:VBox height="240" width="240"
    horizontalAlign="center" verticalAlign="middle">
    <mx:Box id="myBox" height="200" width="200"
    backgroundColor="#80ff00"/>
    </mx:VBox>
    <mx:Button label="Click to start" click="mySeq.play()"
    />
    <mx:Button label="Click to stop" click="mySeq.end()"
    />
    <mx:Sequence id="mySeq">
    <mx:SetPropertyAction target="{myBox}" name="visible"
    value="true" />
    <mx:Parallel target="{myBox}" duration="2000">
    <mx:Fade alphaFrom="0" alphaTo="1" />
    <mx:Glow blurXFrom="1" blurXTo=".8" duration="1500" />
    </mx:Parallel>
    <mx:Zoom target="{myBox}" zoomHeightFrom="1.1"
    zoomHeightTo="0.01" zoomWidthFrom="1.1" zoomWidthTo="0.01"
    duration="2000" />
    </mx:Sequence>
    </mx:Application>

    If you get things into layers you can select "make frames from layers" and then choose animation.  This should get you started anyways.

  • Pan & Zoom effect in FCP 6

    Hello everyone,
    New to this forum and struggling with FCP to perform zoom and pan effect on scren cast movies.
    Can anybody give me som tips and tricks on how you best approach this or recommend a good effect for it?
    Thank You

    Sorry Shane, with screencast I mean that I capture with IShowU screen movements with a Mov file as finished product. In my case it is about creating a software tutorial. Once captured I do the editing in FCP and I need to zoom in or pan to certain screen areas to focus on some functionality on the screen.
    I have seen the tutorial before and Thank you for pointing it out, but that illustrate only a zoom effect, but I cannot find a way on how you easaly can move the screen from left to right , for example.
    Roger

Maybe you are looking for