<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1038563" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1038563</link>
    <description></description>
    <language>en</language>
          <item>
    <title>Dynamic Drive has some great</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/image-flipjavascript#comment-1230871</link>
    <description> &lt;p&gt;&lt;a href=&quot;http://www.dynamicdrive.com/&quot;&gt;Dynamic Drive&lt;/a&gt; has some great scripts and I use them (modified for specific purposes of course) regularly. &lt;/p&gt;
&lt;p&gt;I like especially the image scrollers, flips and carousels (yeh I know Yui has a carousel too, not even sure if they are different at all) I grabbed a few to make a &lt;a href=&quot;http://jcat.netsperience.org/slideshows/&quot;&gt;quick demo page&lt;/a&gt; for client to choose styles.&lt;/p&gt;
&lt;p&gt;yes, I do write from scratch when I have to, but even chefs use prepared stock at times...&lt;/p&gt;
&lt;p&gt;Pre-written scripts save you time and if working for someone else, either save them $$ or get you a better time/$$ ratio depending if working by hour or flat rate.&lt;/p&gt;
&lt;p&gt;Just make sure they are not bloated, too much script trying to anticipate all possibilities.&lt;/p&gt;
 </description>
     <pubDate>Sun, 22 Jun 2008 19:33:05 +0000</pubDate>
 <dc:creator>netsperience</dc:creator>
 <guid isPermaLink="false">comment 1230871 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/image-flipjavascript#comment-1219714</link>
    <description> &lt;p&gt;Ok, well what I described IS quick and easy.&lt;/p&gt;
&lt;p&gt;Sometimes writing your own is easier to install than someone else&#039;s...&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 May 2007 22:14:02 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1219714 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/image-flipjavascript#comment-1219698</link>
    <description> &lt;p&gt;Thanks for all your replys and ideas.&lt;br /&gt;
I was hoping for something really quick and easy as this code will be running on several pages.&lt;/p&gt;
&lt;p&gt;So far in my many searches this:&lt;br /&gt;
&lt;a href=&quot;http://www.dynamicdrive.com/dynamicindex4/thumbnail2.htm&quot; class=&quot;bb-url&quot;&gt;http://www.dynamicdrive.com/dynamicindex4/thu&lt;br /&gt;
mbnail2.htm&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;seems to be closest to what I need, the mouse over part.&lt;/p&gt;
&lt;p&gt;I will play around with this one and the others I have (both css and js type) and see what ends up being the fastest and easiest.&lt;/p&gt;
&lt;p&gt;thanks..&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 May 2007 15:25:33 +0000</pubDate>
 <dc:creator>dragonsjaw</dc:creator>
 <guid isPermaLink="false">comment 1219698 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/image-flipjavascript#comment-1219675</link>
    <description> &lt;p&gt;Ok, here&#039;s what I would do:&lt;/p&gt;
&lt;p&gt;Step One:&lt;br /&gt;
-Put your &#039;actual&#039; image (normal size) in a directory like /img/actuals&lt;br /&gt;
-Create, or script it out, a thumnail version to reside in /img/thumbs  [with the same name and extension as the actual image]&lt;/p&gt;
&lt;p&gt;Step Two:&lt;br /&gt;
-Create a div containing a placeholder and a link wrapped around it&lt;br /&gt;
&lt;code&gt;&amp;lt;div class=&amp;quot;img_on_page&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;img_pop&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/img/thumbs/placeholder.jpg&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&#039;&lt;/p&gt;
&lt;p&gt;Step Three:&lt;br /&gt;
-You have two choices:&lt;br /&gt;
a)  Try and do it mostly using CSS&lt;br /&gt;
-or-&lt;br /&gt;
b)  Do most of it using JavaScript&lt;/p&gt;
&lt;p&gt;Step 3 (version a):&lt;br /&gt;
-use the a:hover and a:over [IE equivalent] attributes for the link&lt;br /&gt;
-in this case your CSS would be something like:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;a {&lt;br /&gt;&amp;nbsp; background-image: url(&amp;#039;/img/thumbs/this_pic.jpg&amp;#039;);&lt;br /&gt;}&lt;br /&gt;a:hover, a:over {&lt;br /&gt;&amp;nbsp; background-image: url(&amp;#039;/img/actual/this_pic.jpg&amp;#039;);&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
...the only problem with this is the obvious one:  each link would need it&#039;s own styling.&lt;/p&gt;
&lt;p&gt;Step 3 (version b):&lt;br /&gt;
-implement some Javascript:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;div id=&amp;quot;blank_one&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;div class=&amp;quot;img_on_page&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; onMouseover=&amp;quot;blow_up(1)&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/img/thumbs/the_image.jpg&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
JavaScript&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;function blow_up(img_id) {&lt;br /&gt;&amp;nbsp; document.getElementById(&amp;#039;blank_one&amp;#039;).style.visibility = &amp;#039;visible&amp;#039;;&lt;br /&gt;&amp;nbsp; document.getElementById(&amp;#039;blank_one&amp;#039;).style.display = &amp;quot;block&amp;quot;;&lt;br /&gt;&amp;nbsp; document.getElementById(&amp;#039;blank_one&amp;#039;).innerHTML = &amp;quot;&amp;lt;img src=&amp;#039;/img/actual/the_image.jpg&amp;#039; /&amp;gt;&amp;quot;;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Now, that should get you started.  You&#039;ll have to use some system to keep track of IDs and which image they&#039;re referencing.  In this example, I assumed that you will float the &quot;blank_one&quot; div over top of the page (using CSS:  z-index: [somelargenumber];), and just have to orient it to where you want.&lt;/p&gt;
&lt;p&gt;This is untested, and not even a whole solution, but it&#039;s a good generalization.  I&#039;m pretty sure this won&#039;t cover the large image going back to the thumbnail, so you&#039;d have to write something to reverse the process.&lt;/p&gt;
&lt;p&gt;Good luck&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 May 2007 06:45:26 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1219675 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Image flip/ no JavaScript needed</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/image-flipjavascript#comment-1219672</link>
    <description> &lt;p&gt;Does this[1] do what you want? It uses CSS only.&lt;br /&gt;
Add :focus and (for IE) :active states to the :hover rule to make it work with the keyboard (TAB).&lt;/p&gt;
&lt;p&gt;[1] &lt;/p&gt;
&lt;p&gt;Lots more like it. Google is your friend.&lt;/p&gt;
&lt;p&gt;Cordially, David.&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 May 2007 03:12:16 +0000</pubDate>
 <dc:creator>webwiz</dc:creator>
 <guid isPermaLink="false">comment 1219672 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/image-flipjavascript#comment-1219663</link>
    <description> &lt;p&gt;I would suggest javascript too, but there is also a css mouse-over event for divs you can use for this too... you can check out javascriptkit.com and dynamicdrive.com for a bunch of scripts and effects you can try...&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 May 2007 01:05:11 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1219663 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
