How do I put an image over a slideshow

Hi,
I'm trying to create a website that includes a slideshow overwhich I want to put photos that do not rotate, as demonstrated with the Covergirl site below where we see a rotating background with non-rotating photos on top in the forefront:
http://www.covergirl.com/?utm_source=bing&utm_medium=cpc&utm_term=covergirl&utm_campaign=C overGirl_Search_Tablet_Brand+Awareness&utm_content=MUULePjs|1728783503
If anyone can give me some advice on how to go about coding this I'd really appreciate it.
Thanks!
Michael

These sliders support HTML overlays (with text or images).
Nivo slider. 
http://nivo.dev7studios.com/
WOW Slider
http://wowslider.com/demo.html
Nancy O.

Similar Messages

  • How I can put an image like a intro for a gallery?

    I see a books with an image like a intro for a gallery or for a widget, example, in an page there is a imagen, I tap in the image and an gallery opens, how I can make this in my book? How I can put an image and when I tap in the image a gallery opens or a widget opens?

    Hello Apple 4r1
    You could do this in Keynote I am sure.
    Create a simple two page Keynote document.
    The first slide will have the "INTRO Image" once press this slide can then automatically open up the second slide with a transition automatically.The second slide can hold all the images on the one page and just play over time each image for a set amount of time each before end of time.
    I hope that helps some what.
    Another great little piece of software that builds widgets that can be used within iBooks Author is Hype from the app store.
    Regards,
    Nigel

  • How can I put another image without its associated sound on an audio (without its image) ?

    IMovie 11 : how can I put one image without its associated sound on an audio (without its image) ? thanks

    Hi
    As iMovie doesn't orient after Time - but only after Video/Photo clips is this not so easy to do.
    I use black photos as Dummy clips - and put them into a new project first
    then I add the Music I want
    Then I drop the Video-clip (that I realy want) ontop of the black dummy photo - Where it's supposed to be - THEN IF advanced tools are selected (in iMovie preferences) there will be a Drop-Down menu and here I can select to do a Cutaway - and select not to add the audio from it (or in wave-form just silence it out)
    Yours Bengt W

  • And again - how do I superimpose an image over a moving image?

    So I am beginning to work this all out...
    I have cropped an image using motion which is looking great, except that the image (which is someone's head) is square because I used 'crop' in motion, any ideas how to make the edges curved?
    The next step is working out how to keep the superimposed image over the head of the person in the video if they move? ie so it tracks the original image in movement?
    Thank you all for your help so far, I never expected help like this so quickly!

    Hard to follow you when you're creating new threads on the same topic...
    First of all - don't use Motion to crop - that's easily done in FCP - if you want to follow the edges of the head, use the Mask tool in Motion.
    Second, there's a video tutorial for using the tracking tools in Motion here:
    http://motionsmarts.com/
    Patrick

  • How do I put an image on my podcast in the itunes store?

    How do I put an image on my podcast in the itunes store?

    The image which appears in the Store page is referenced in the 'itunes:image' tag in the feed. As you are probably using a program or an online service to create your podcast, rather than hand-writing the feed, you will need to look in their Help to find out where you input the image or the reference to it.

  • How can I put an image onto a postcard format?

    How can I put an image onto a postcard format?

    By postcard format do you mean crop the picture into a postcard shape?
    If so, here is one way: Activate the Rectangular Marque tool. Set Style to Fixed Aspect Ratio, and enter the dimensions for Width & Height. In this example I used a standard postcard size of 6" x 4.25".  Open your picture, draw out the rectangle, and Image > Crop. The picture will now be in the 6 x 4.25 proportion.
    To get it to the actual 6" x 4.25" size, do Image > Resize > Image Size. Check the Constrain Proportions Box, and enter either the true Width or Height; the other dimension will change accordingly.
    If this is not what you are trying to do, please be more specific.

  • How can I put an image of a painting centered on to a blank 4x6 postcard?

    How can I put an image of a painting centered on to a blank 4x6 postcard?

    moopartist wrote:
    How can I put an image of a painting centered on to a blank 4x6 postcard?
    Go to File>new>blank file. Enter the dimensions, background color to suit. For resolution, it's best to have the same value as that of the image. For printing, it is desirable to have the resolution in the 240-300px/in range, although I have printed below this range.
    Open the file with the painting. Use one of the selection tools, e.g. selection brush, lasso tool, and select the image.
    Go to Edit>copy
    Open the blank file
    Go to Edit>paste. The selection will come in on its own layer
    Use the move tool to position, and, to resize (if necessary) with the corner handles of the bounding box.

  • How can I put an image/s in Java Application?

    Hi to all.
    How can I put an image/s in Java Application?
    I can put some images in Java applet but when i try to put it in Java application there was an error.

    hey u can easily do it with JLabels...i found a Code Snippet for u
    public class MyPanel extends JPanel
    {private JLabel imageLabel; public MyPanel() {     Image image = Toolkit.getDefaultToolkit().getImage("myimage.gif"); // Could be jpg or png too     imageLabel = new JLabel(new ImageIcon(image));     this.add(imageLabel);  }}
    hope it helps
    Cheers,
    Manja

  • How can I put captions in a pdf slideshow in Photoshop Elements 13?

    How can I put captions in a pdf slideshow in Photoshop Elements 13?

    Tags are independent of PDF page content. Removing/deleting a page or page(s) does not remove anything in the PDF's structure tree.
    As Full Check is looking at the structure tree the report reflects what is present there.
    In the Tags panel walk the structure tree to locate the Table tags. Delete these.
    Be well...

  • How do I superimpose one image over another

    How do I super impose one image over another?

    Open image A
    Open image B
    On image B, use one of the selection tools, e.g. selection brush, lasso tool, to select the object which you wish to "superimpose"
    Go to Edit menu>copy to put the object on the clipboard
    Go back to image A
    Go to Edit>paste. The object will be on its own layer
    Get the move tool out of the toolbox, and position the object and resize, if indicated

  • How do I send an Image over a socket ?

    I'm trying to get the output from my webcam and send that data out to a socket. Now the output from the webcam is running I'm just not sure how to send it out over the socket.
    Server.java
    import java.io.*;
    import java.net.*;
    public class Server {
       public static void main(String args[]) {
         ServerSocket serverSocket = null;
         boolean listening = true;
         try {
         serverSocket = new ServerSocket(1354);
         System.out.println("Listening for Connections...");
         } catch (IOException drr) {
         System.out.println("Error Listening :" + drr);
         System.exit(-1);
         try {
         while(listening)
         new ServerThread(serverSocket.accept()).start();
         } catch (IOException er) {
         System.out.println("Error Creating connection:" + er);
         try {
           serverSocket.close();
         } catch (IOException err) {
         System.out.println("Error Closing:" + err);
    }When a connection is made it will start the webcam and send the image.
    ServerThread.java
    import java.net.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    import javax.media.*;
    import javax.media.format.*;
    import javax.media.util.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import com.sun.image.codec.jpeg.*;
    public class ServerThread extends Thread {
        public static Player player = null;
        public CaptureDeviceInfo di = null;
        public MediaLocator ml = null;
        public JButton capture = null;
        public Buffer buf = null;
        public Image img = null;
        public VideoFormat vf = null;
        public BufferToImage btoi = null;
        public ImagePanel imgpanel = null;
        private Socket socket = null;
        Image blah;
        PrintWriter out = null;
        public ServerThread(Socket socket) {
         super("ServerThread");
         this.socket = socket;
        public void run() {
         try {
             out = new PrintWriter(socket.getOutputStream(), true);        
             imgpanel = new ImagePanel();
                 String str1 = "vfw:CompUSA PC Camera:0";
                 String str2 = "vfw:Microsoft WDM Image Capture (Win32):0";
                 di = CaptureDeviceManager.getDevice(str2);
             ml = new MediaLocator("vfw://0");
                try {
               player = Manager.createRealizedPlayer(ml);
                 } catch (Exception npe) {
               System.out.println("Player Exception:" + npe);
                player.start();
             Component comp;
             if ((comp = player.getVisualComponent()) != null) {
               // Grab a frame
               FrameGrabbingControl fgc = (FrameGrabbingControl) player.getControl("javax.media.control.FrameGrabbingControl");
               buf = fgc.grabFrame();
               btoi = new BufferToImage((VideoFormat) buf.getFormat());
               //Send the image over the socket
               out.println(btoi);
         } catch (IOException e) {
             System.out.println("It bombed:" + e);
        public static void playerclose() {
           player.close();
           player.deallocate();
      class ImagePanel extends Panel {
        public Image myimg = null;
        public ImagePanel() {
        public void setImage(Image img) {
          this.myimg = img;
          repaint();
        public void paint(Graphics g) {
          if (myimg != null) {
            g.drawImage(myimg, 0, 0, this);
      }The output I get from running the server is this:
    BufferedImage@c9131c: type = 1 DirectColorModel: rmask=ff0000 gmask=ff00 bmask=ff amask=0 IntegerInterleavedRaster: width = 320 height = 240 #Bands = 3 xOff = 0 yOff = 0 dataOffset[0] 0
    Now how can I turn this into an image If this output is correct?

    HUH?
    I got the one to send the images over the network. I'm now trying to get the exact feed of the webcam and sending that over the network. This is alot more difficult to accomplish but I did see where I messed up my process of sending the images was just having to save the file then open it up put it in a byte array then send that over the network to the client. Once it was at the client i was able to re-construct it and throw it up in the frame. The only problem was lag. So this tells me it would be much more faster if instead of saving the file to send the client and having to reconstruct the image I should just send the webcam feed i used to make the image.
    eh, I guess I didn't need any help.
    Hey no offense or anything but you really have to learn how to spell better.

  • How do I put an image in a spry tabbed panels tab

    Hello All,
    I am currently working on a site with Spry Tabbed Panels.
    One thing I'm not sure how to do is to put an image in each of the selecting tabs. I've done it before and I've forgot. I also have a site with an example of what I would like to do.
    http://emilymagnuson.com
    The tabs on this site were created with images inside of them. And I would like to know how to do it. I would like to make it work so the image changes when you click, hover, and deselect.
    Thank you.

    To put an image in the foreground, add it to your HTML code:
    <li class="TabbedPanelsTab" tabindex="0">
    <div style="margin-top:9px;"><img src="your_image_here.jpg">Contact</div>
    </li>
    Nancy O.

  • How can I put an image in the page header so that it will be repeated on every page?

    Hi to everyone!
    I want to create a Pages template with the logo of our company in the page header.
    I'd like to put that image (logo) in the page header so that it will be repeated on every page but it will not modify the content of the page.
    Anyone know how to achive this, or something similar without have to copy-paste that image every time we add a page to the document?
    Thanks in advance

    Takashi,
    Turn off the Page Headers (not absolutely necessary, but since you don't need it, why not)
    Put your Graphic on the page and make the following settings:
    Then Insert > Text Box and make the same settings as for the graphic.
    Place your "Header text" in the text box and arrange the box and graphic as you want them. Move both to Section Master using the Arrange menu.
    Jerry

  • Animated gifs: How to transition (fade) 1 image over another

    Fireworks noob, trying to make an animated gif in CS4, reading/experimenting for hours, searching FW help documentation, Youtube tutes, Google - can't find how to pull off this basic fade.
    6 unique but same sz. jpgs in my .png (default FW worksheet doc), each a different "state" in the states palette. Got the basic timing down, all 6 pop up one after another, but I want transitions - #1 fades into #2, 2 into 3 etc. - possibly 3-4 step fade.
    How?
    Where are the other transitions/effects hidden?
    Doesn't FW have some kind of animation timeline feature where you can click through frame by frame?
    Ready to go back to Gifbuilder...
    TIA!

    Gif animations are for poster-like images. They don't work successfully with JPEGs because the file size ends up enormously large. The best program to use for whast you want to do is Flash. That said, Fireworks has an animation wizard that will fade images for you. Select an image and choose Modify > Symbol > Convert to Symbol. A dialog box will pop up enabling you to choose which type of symbol you wish to create. Choose Animation. From there, just follow the wizard. To fade one image over the other, you'll need to convert the images to symbols and animate them on different states  (frames). Symbol 1 on state 1. Symbol 2 on state 10. Symbol 3 on state 20, for example.

  • TabbedPanels Tab - How can we put individual images on each tab button?

    Hi,
    How can we put individual propeties (like size, background images etc) in each tab button of TabbedPanels Tab?
    Thanks

    Wow ! Itz amazing !! .... This is what 'm exactly looking for
    Thanks a lot Gramps
    Alin

Maybe you are looking for

  • IWeb FTPKit plugin error what can I do?????

    Process:         iWeb [147] Path:            /Applications/iWeb.app/Contents/MacOS/iWeb Identifier:      com.apple.iWeb Version:         3.0.4 (304) Build Info:      iWeb-6010000~1 Code Type:       X86 (Native) Parent Process:  launchd [95] PlugIn Pa

  • SD: Billing : Invoices send to incorrect customers

    Hi All, We are facing a peculiar issue at our client Produciton system while generating (collective - mass) invoices. Following are the details System Details R/3 version - 4.6C OS - Windows DB- MSSQL The following program - RV60SBT1 ( Creating Billi

  • Upgrade solaris from 9 to 10 - Oracle issues?

    We are planning to upgrade our Solaris box, running oracle 9.2.0.5, from solaris 9 (5.9) to 10, this to take advantage of better TCP/IP stack on Solaris 10 , and the Network trunking feature, multiplexing network cards to same IP, which is non-standa

  • Bold Printing in Character Mode

    Hi, We would like to print the contents of the report in bold format. We tried to change the bold.prt file accordingly but it is not working as expected. Is there any parameter in the report that has to be set and is there any example that you can gi

  • My HP Pavilion 23 shows sethc.exe Bad Image: system 32 is not designed to run on Windows

    While installing a new fan in my home, the electrician blew a circuit that my HP A-I-O Pavilion 23 computer runs from.  We immediately activated it but my computer would not connect to Windows.  I received the following message: ***sethc.exe Bad Imag