Splash page with animated gif only question

Hello all:
I have a splash page (index.html) that is designed using an animated gif created in photoshop. The rest of my site is Css/XHTML, but has some divs containing animated gifs. I have two questions;
1: By using only the animated gif on the splash page, am I limiting or hindering my SEO (google, microsoft, yahoo) ranking opportunities as there is no "content" on the page that the spiders/bots can see? I went ahead and included some "content" but hid it by coloring the type the same as the background color hoping that might do something, but obviously I'm a SEO newbie so any suggestions are more than welcomed. I will include the code at the end of this post, and my site is: http://reynolds-marketing.com.
2. Is there a way to pre-load the animated gifs on my pages so that they play more smoothly and efficiently?
TIA for any of your help. Murman
The code for the splash page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Reynolds Marketing - The Marketing Resource Source</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="description" content="Reynolds Marketing is a marketing services company offering a full spectrum of marketing services including: consultation, creative, production and logistical marketing services headquartered in Temecula, CA." />
<meta name="keywords" content="Reynolds, Reynolds Marketing, marketing services company, marketing services agency, full spectrum of marketing services, full service marketing agency, marketing consultant, print creative, digital printing, offset printing, website design, website development, digital marketing, digital print on demand, DPOD,Video Production, Video Production, Direct Mail, Temecula, powerpoint presentations" />
<link rel="shortcut icon" href="http://www.reynolds-marketing.com/favicon.ico"/>
<!-- ImageReady Styles (index3.psd) -->
<style type="text/css">
<!--
#index_ {
     position:relative;
     left:0px;
     top:0px;
     width:640px;
     height:480px;
     margin-left: auto;
     margin-right: auto;
-->
</style>
<!-- End ImageReady Styles -->
</head>
<body bgcolor="#FFFFFF" text="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" id="index_" style="background-color:#FFFFFF;">
<p>
  <!-- ImageReady Slices (index3.psd) -->
<img src="images/index.gif" alt="" width="640" height="480" border="0" usemap="#indexMap" id="index" /></p>
<p>Reynolds Marketing offers a full spectrum of marketing communications services including: consultation, creative, production and logistical marketing services located in Temecula, California. Our services include marketing consultation, press relations, public relations, copy writing, print creative, direct mail creative, video creative, web creative, interactive creative. Print production, direct mail, video production, web page creation and production. Digital print on demand, fulfillment services, powerpoint presentations, marketing communications, marketing communications conformance. To find out more about our services, please go to <a href="http://www.reynolds-marketing.com/who_we are.html">http://www.reynolds-marketing.com/who_we are.html</a> . </p>
<p>Site map:<br />
  <a href="http://www.reynolds-marketing.com/index.html">http://www.reynolds-marketing.com/index.html</a><br />
  <a href="http://www.reynolds-marketing.com/who_we_are.html">http://www.reynolds-marketing.com/who_we_are.html</a><br />
  <a href="http://www.reynolds-marketing.com/contact_us.html">http://www.reynolds-marketing.com/contact_us.html</a><br />
  <a href="http://www.reynolds-marketing.com/what_we_do.html">http://www.reynolds-marketing.com/what_we_do.html</a><br />
  <a href="http://www.reynolds-marketing.com/services.html">http://www.reynolds-marketing.com/services.html</a><br />
  <a href="http://www.reynolds-marketing.com/clients.html">http://www.reynolds-marketing.com/clients.html</a><br />
  <a href="http://www.reynolds-marketing.com/projects.html">http://www.reynolds-marketing.com/projects.html</a><br />
  <a href="http://www.reynolds-marketing.com/news.html">http://www.reynolds-marketing.com/news.html</a></p>
<p>
  <map name="indexMap" id="indexMap">
    <area shape="rect" coords="296,434,342,444" href="who_we_are.html" />
    <area shape="rect" coords="228,451,286,461" href="who_we_are.html" />
    <area shape="rect" coords="296,451,353,461" href="what_we_do.html" />
    <area shape="rect" coords="364,451,416,461" href="contact_us.html" />
  </map>
  <!-- End ImageReady Slices -->
  <script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  </script>
</p>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-8703884-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>

My guess is yes, but that is just my opinion.  I believe the text/background same color idea was really in vogue back in the late 90's and we all heard that it was the kiss of death for SEO that the SE's hated them so much you got de-listed, not sure if that is a fact or not.
My bigger concern would be how many people you are losing by making them wait to get to where they want to go.  I have told many a client that in some sense, the interent is too big, you have too much competition and people have thin patience for things like splash pages.  The ooo and aaa effect of animated gifs is long dead...again, in my opinion.
I dont know the answer to your load question...
Gray

Similar Messages

  • Problem with animated .gif

    I have a problem with animated gifs. So if I set a animated gif as background and a button is over it as in the example below, then everytime the animation goes on the button disappears until I go over it with the mouse. So what can I do to solve this?
    import java.awt.Color;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    public class FrameBackImage {
              public static void main(String args []){
                   final JFrame frame = new JFrame("Frame");
                   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   frame.setSize(400, 400);
                   frame.setResizable(false);
                   frame.setLayout(null);
                   java.net.URL imageURL = ImageApp.class.getResource("animatedw.gif");
                   ImageIcon imageIcon = new ImageIcon(imageURL);
                 final JLabel label = new JLabel(imageIcon);
                 label.setBounds(0,0 , 400, 400);
                 frame.getLayeredPane().add(label);
                 JButton button = new JButton ("Exit");
                 button.setBounds(200, 129, 60, 60);
                 button.setBackground(Color.black);
                 button.setForeground(Color.white);
                 frame.add(button);
                 button.addActionListener(
                 new ActionListener(){
                        public void actionPerformed(ActionEvent arg0) {
                             System.exit(0);
                 frame.validate();
                  frame.setVisible(true);
    }

    In the future, Swing related questions should be posted in the Swing forum.
    Your usage of the getLayeredPane() method is something I've never seen before, so I don't know if thats the problem or not.
    How to display a "background image" is asked all the time in the Swing forum. So to familiarize yourself with the forum you can try searching the Swing forum. Using the keywords I highlighted would be a good place to start.

  • Loss of rollover behavior with animated GIF

    I am currently working on a webpage design that has lost the ability of the rollover behavior on a page when animated gifs are optimized.  The gif images are on seperate states that cycle forever, but the rollover slices at the top of page will flash slightly when moused over but go back to original state.  The other pages that don't have the animated gif will work properly and hold the image when highlighted.  I have changed the rollover behavior on the master page from simple to swap image and that does not help.  I have also tried to insert the animated gif images as slices and only animate that portion on the page, but I can't get that to work either.   Any tips?
    Thanks

    I found out that it works better to import the animated GIF's through dreamweaver.
    It is now working.

  • Help with animated gif background once opened in Photoshop c33 extended

    I often work with animated Gif's and a
    adding doggies etc to the top layer.
    I am having a problem with animated Gif with (existing transparent) background when saving from the web and opening in Photoshop cs3 extended it is changing the background to White automatically ?  ( which is not what I want)  I would like to know how to keep in the same format with the tranparent or even change to black as that is the background on my website.....do not know why it is converting it to white in photoshop or how to change....Thank you advance!

    Thank you so much....after many hours playing with ....went right too and worked perfect!!  Thank  you !!

  • Animated gif only plays one time??

    An animated gif created in Photoshop and exported with 'loop forever' output only loops once on my home page. I have not resized, cropped it or added any effects but as it plays once Muse can't have rasterized it.
    I am using adobe muse cc 7.1 build 329, OSX 10.9
    the lilly in the top left gif image should animate continuously. - jimmymcgilchrist.comhttp://www.jimmymcgilchrist.com/index.html
    any assistance appreciated.
    Jimmy

    Hi DrStrik9,
    Thanks, I just tried it directly in the browser and it works fine. When previewing in the finder window on my desktop it works fine as well.
    I have had animated gifs working fine previously on the same muse site as a browser fill and as buttons.
    Nothing has changed about the way I make the animation but these are some variables that have changed:
    - update Operating System from OSX 10.8 to 10.9
    - udate to current muse version
    - switch from Godaddy - wordpress hosting to Adobe Business Catalyst
    - upload via 'publish' within muse rather than via 'upload to FTP host' within muse.
    Thanks,
    Jimmy

  • [need help with animated gif - shows up fuzzy on IE]

    Hi,
    I created an animated gif in photoshop cs3 with combination of text and images in Mac.  For some reason, the text on the banner looks fuzzy on Internet Explorer. Do any of you know what is wrong with the banner?  Can anyone help me on this?
    Thanks

    How does it look in Firefox on Windows? By only testing one browser on Windows, you cannot determine if it is a matter of the browser or the overall settings for the computer.
    Do you have a page to share so that we can see the fuzziness or can you post the GIF file here?

  • Firefox slows down when opening a site with animated gifs

    After updating to FF4, I find that whenever I try to open a page that has multiple animated gifs on it, firefox slows down tremendously. CPU usage goes up to 50-75% and all animated gifs are moving really slow.
    It's not only large animated gifs, but it also occurs on forums that have animated smilies. I never had this problem in FF 3.6 nor any other browser (IE, Chrome, Safari). If I start FF4.0 without any add-ons or plugins it does the same thing. Even with a fresh install. Does anyone have a solution to his problem? Since I can't use some of my favorite sites now with FF, without my pc slowing everything down.

    Disabling the hardware acceleration worked for me!

  • Help with animated gif messages

    I can't seem to get animated GIFS with music as a SMS or a MMS to play. They are sent from people with phones like the Razor, LG, Envy etc. on the same network as mine ( Verizon ). When I get the message it will show the GIF for about 1 second then it dissapears, then the music plays. It will also give me the option to open the attachments or slides but the GIFS don't open . I can get Video messages from anyone and the videos plays fine. In the past when I opened one of these messages it would kill the audio on my phone and I would have to do a hard reboot for my phone to work even though I could still receive SMS and MMS messages, just the audio on the phone died. I was told the new OS 4.5 would correct this. The only thing it fixed was now if I get a animated GIF message it still does not play but my phone does work and I don't have to reboot. Is there a setting I need to change or is this not supported? I have 2 Curves 8330 OS 4.5.0.77 BIS on Verizon with the unlimted BB plan.
    Thanks,
    Leo
    Solved!
    Go to Solution.

    GIF file format is not supported by Blackberry. Check the details of the supported file formats by BlackBerry.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Using a swf splash page with muse

    Hi,
    I have a site that was done in Joomla and the start page is index.php, I created a swf that plays and animation and offers an "enter" button that tkaes you to the index.php. So when you go the the site the index.html plays the swf and then you click enter to get to the site... worked great.
    I wanted to get away from joomla with all my sites so I redid this in muse and guess what, I can't figure out how to get the splash page to work. Any ideas?
    The site is szemszem.com .... the original splash page is szemszem.com/index_old.html
    Thanks
    Mike

    Hi Mike
    I believe you have fixed the issue ??
    Thanks,
    Sanjit

  • Spry Effects with Animated GIF

    Hi,
    I'm using Spry's fade it effect in conjunction with Spry's
    update content to update a div with html content. Now i have an
    animated gif that is totally non-related to this action on the
    screen that is "draggable". What is happening is that each time i
    invoke Spry's update content....The animation of the GIF
    stops....However, this happens in IE and not FF...
    Is there a bug here?

    Hi,
    Just an FYI, in most browsers, JavaScript executes on the
    main UI thread which is the same thread that is responsible for
    painting/updating the screen. If you have JS on the page that is
    doing some long operation in a tight loop, or if you dynamically
    insert lots of HTML content into the document, causing the browser
    to recalculate/layout/re-render a lot of content in the page, then
    you might see this situation.
    I can't tell what your situation is without seeing what you
    are actually doing.
    --== Kin ==--

  • Animation with Animated GIF

    Hi,
    I need to do an animation, I am using an Image object to load an animated GIF. Is there any way to run all the frames which this GIF contains using the Image Object?. I don�t want to extract each image from the gif and then copy them into a jpg format, and then have to make a loop to animate the set of JPG images... it is possible, only load the GIF, and with some java class, animate the gif??
    Thanks.

    Have you tried just displaying an animated gif image, say JLabel+ImageIcon. It works:
    http://forum.java.sun.com/thread.jsp?forum=20&thread=553508

  • Guest Splash Page with Cisco WLCs Help

    Hi,
    I need some guidance using Web Authentication / Web Pass-through to create a mandatory splash page that is presented to users of our guest WLAN.  Currently our guest WLAN is wide open, users connect and go straight through to get Internet Access. Here's what we'd like to accomplish.
    1. Have the page hosted on an external web server (i.e not on the controller)
    2. Present Terms of service
    3.
     a. Present an optional field to enter an email address & date of birth (DOB) to opt in for marketing purposes
            OR
     b. Present a mandatory field to enter an email address with an optional check box and DOB to opt in for marketing (the idea behind option b, is that whether they opt in for marketing or not, we could still some how use the email as a username, but not require a password.  In the hopes of then using this as a unique identifier in the WLC for troubleshooting / reporting purposes)
    4. At the very end, have an "I Agree" button
    5. Re-direct to our copmany's public facing website
    Our controllers are 5508s, running 7.4.121.0.  I more or less have an idea of how to accomplish this, but I've never used Web Auth / Web Passthrough with a Cisco Controller before, so I'm hoping someone can clear up a few things for me.
    1. Am I correct that, when using an External server to host the login.html page, we must use Web Authentication, since Web Pass-through is only an option when using an Internal Page? Web Pass-through seems ideal for us, since we don't care about credentials, but from what I'm reading, it seems restricted to Internal (on the Controller) deployments only.
    Based on these
    http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wlan-security/115951-web-auth-wlc-guide-00.html#passthrough
    http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wireless-lan-wlan/116879-configure-wlc-00.html
    http://www.cisco.com/c/en/us/support/docs/wireless/4400-series-wireless-lan-controllers/107474-web-pass-config.html
    2. If Web Pass-through is not an option when using an External deployment, is there any way we could use an email address as a username, but not require a password?  If not, is hiding the username/password fields in the html code of the splash page, and using a single pre-configured default username / password the only other option ? As described here: https://supportforums.cisco.com/discussion/10847046/unsecured-guest-access-customizable-splash-page-and-logo
    3. It sounds like SSL cert warnings may be an issue even if we use an External deployment, because the controller still acts as a middle man.  Is this correct, and is the best fix to install a valid 3rd party cert on the controller?
    P.S. I’m aware of the Big Brother type things that can be done with Cisco MSE and Connected Mobile Experiences, as far as guest tracking / marketing / analytics go. However, that’s way more than we’re looking to do at this point.
    Thanks in advance for any guidance you can provide!

    Hello Jonathan,
    The idea you have is fine, the only exception is the extra fields of information that you want to collect. From the WLC perspective this is not possible to gather.
    The example given on https://supportforums.cisco.com/discussion/10847046/unsecured-guest-access-customizable-splash-page-and-logo looks very interesting, and as long as the WLC receive the information it needs to authenticate the client, you can modify the HMTL code as you want. However, as somebody state on that post, Cisco provides the html example, but we do not really support the html content creation or modification.
    Anyway below on answer #2 I am giving you an idea that could work (again Im not html expert I don't know if that could be achieved that way) maybe you can have a better idea.
    To answer your queries:
    1) The customized web-passthrough page can be hosted on an external Web Server.
    When the pages are on an external webserver, the passthrough is still performed on the WLC, just the pages reside on the external server. It is a good idea to be sure that the pages come up ok on the external server without webauth involved since webauth will not work unless the external webserver works
    2) We have examples of what HTML content a customized Web Passthrough page should include. If you add extra fields on the HTML code (like email address & date of birth), the WLC won't be able to handle this data and most probably you won't be able to gather this information from the WLC , unless you customize the web page in such way that it sends the fields email address & date of birth to another server (rather than to the WLC) to gather this information, but at the end what matter for the WLC is to receive the click on the "Accept" button to authenticate the client.
    3) Regarding the certificate, there are two options, the cheapest and easiest is to disable HTTPS for web authentication. Then, your guests will open an HTTP web page, without having the certificate warning.
    Whether or not you perform local or external web authentication, you still hit the internal web server on the controller. When you redirect to an external web server, you still receive the certificate warning from the controller unless you have a valid certificate on the controller itself. If the redirect is sent to https, you receive the certificate warning from the controller and from the external web server, unless both have a valid certificate.
    In order to get rid of the certificate warnings all together, you need to have a root level certificate issued and downloaded onto your controller. The certificate is issued for a host name and you put that host name in the DNS host name box under the virtual interface on the controller. You also need to add the host name to your local DNS server and point it to the virtual IP address (1.1.1.1) of the WLC.
    This link provides information about WebAuthentication on an External Web Server, however exactly the same applies for Web Passthrough:
    http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wlan-security/71881-ext-web-auth-wlc.html
    Also, you can download the WebAuthentication bundle, with the examples and some useful information about different customized web pages, it can be used as a template to build your page. Here you will see that Web Passthrough to an external server is indeed a valid option, when you download and unzip it, open the "readme.html"
    https://software.cisco.com/download/release.html?mdfid=282600534&softwareid=282791507&release=1.0.2&relind=AVAILABLE&rellifecycle=&reltype=latest
    Hope this helps

  • Problems/help with animated GIF exports

    I am an experienced Photoshop user.  I recently upgraded to CS5 (Windows) and have been attempting to produce animated gif files. 
    After reading a few tutorials on the topic, I have been able to: 
    Create a PSD with a few jpg images as layers; 
    Move the layers to the animation window; 
    Set the cycle times and optimize the animation window; and, 
    Use the Save for Web Devices dialog to create the GIF file. 
    Everything appears to be normal throughout this process.  However, the exported GIF file appears as a dark gray frame when I open it in IE, or upload it to my image hosting site. 
    Anybody else experiencing this type of problem? 
    Thanks 

    No, my Photoshop CS5 saves animated GIFs just fine, and I did just what you said.  For example (you have to click on an image here to see it animate):
    Can you post your image here?  Maybe it could be a problem with your browser not animating the image properly?  What version of IE do you use?
    -Noel

  • Animated gif only saving an image

    I have created an animated gif. 20 frames in the animation docker at the bottom of screen.
    http://imgh.us/PS_screen2.jpg     and http://imgh.us/PS_screen1.jpg  the last image is what the outcome is. Only a gif images 21kb big.  I have no idea what has gone wrong. Even when I play the animation in both the PS screen as well as in the save to web screen  -  it shows the frames being highlited in the animated frame docker=t but DOES NOT actaullay animate.PLEASE someonw help as all the forums just say save as gif in web whch is what I have done about 20 times now but still get one gif image at the end.

    Can anyone assist in this frustrating problem I am having. I have read so many google assists and theay all say the same thing.But when following thos instructions, All I still get is an image and not an animated gif.

  • Problem with animated gif when direct image sharing over iChat

    Im having an issue that an animated gif isnt displaying animated when I drag and drop it into an instant message window with a buddy. I drag it from Firefox animated into the chat window but its doesnt get animated. I can see his gifs are animated when he drags and drops it from Safari into the chat window. Does the internet browser make a difference, or is there an option I haven't turned on. I tried searching through the preferences and haven't got a clue to what's stopping my gifs from being animated during direct instant message session.
    Im using the latest iChat 5.0.3(745).

    Hi,
    Welcome to the    Discussions
    If you drag the pic to the Desktop (Download) and then drag to the Browser does it display as Animated then ?
    9:03 PM Sunday; December 12, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

Maybe you are looking for