<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DesignerFied.com &#187; Dhtml</title>
	<atom:link href="http://designerfied.com/tag/dhtml/feed" rel="self" type="application/rss+xml" />
	<link>http://designerfied.com</link>
	<description>Free Photoshop Brushes, Textures and other Goodies.</description>
	<lastBuildDate>Sun, 20 May 2012 11:21:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How To Customize Dynamic Drive&#8217;s Featured Content Slider</title>
		<link>http://designerfied.com/308/how-to-customize-dynamic-drives-featured-content-slider.html</link>
		<comments>http://designerfied.com/308/how-to-customize-dynamic-drives-featured-content-slider.html#comments</comments>
		<pubDate>Sun, 31 Aug 2008 01:50:01 +0000</pubDate>
		<dc:creator>Jake Hurst</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Dhtml]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=308</guid>
		<description><![CDATA[Yesterday I added Dynamic Drive&#8217;s Featured Content Slider v2.4 to one of our sites. This script was very easy to install and customize so I decided to share with you how I did it. Basically I made it transparent with PNG images. Fist off you need to head over to Dynamic Drive and download the &#8230;]]></description>
			<content:encoded><![CDATA[<p>Yesterday I added <a rel="nofollow" target="_blank" href="http://www.dynamicdrive.com/dynamicindex17/featuredcontentslider.htm" target="_blank">Dynamic Drive&#8217;s Featured Content Slider v2.4</a> to one of our sites. This script was very easy to install and customize so I decided to share with you how I did it. Basically I made it transparent with PNG images.</p>
<p><span id="more-308"></span></p>
<p>Fist off you need to head over to <a rel="nofollow" target="_blank" href="http://www.dynamicdrive.com/" target="_blank">Dynamic Drive</a> and download the files that you need <a rel="nofollow" target="_blank" href="http://www.dynamicdrive.com/dynamicindex17/featuredcontentslider.htm" target="_blank">Featured Content Slider v2.4.</a></p>
<p>Seconded you need to ether make your own transparent PNG images or you can go <a rel="nofollow" target="_blank" href="http://css-tricks.com/free-pngs-for-creating-transparent-fills/">here</a> and use the images I used for this project.</p>
<p><a rel="nofollow" target="_blank" href="http://designerfied.com/slider-demo.html"><strong>See a live demo</strong></a></p>
<p><strong>Now lets </strong><strong>quick </strong><strong>look at the stock CSS code.</strong></p>
<blockquote><p><span style="color: #ff0000;">.sliderwrapper{<br />
position: relative; /*leave as is*/<br />
overflow: hidden; /*leave as is*/<br />
border: 10px solid navy;<br />
border-bottom-width: 6px;<br />
width: 400px; /*width of featured content slider*/<br />
height: 250px;<br />
}</span></p>
<p><span style="color: #ff0000;">.sliderwrapper .contentdiv{<br />
visibility: hidden; /*leave as is*/<br />
position: absolute; /*leave as is*/<br />
left: 0;  /*leave as is*/<br />
top: 0;  /*leave as is*/<br />
padding: 5px;<br />
background: white;<br />
width: 390px; /*width of content DIVs within slider. Total width should equal slider&#8217;s inner width (390+5+5=400) */<br />
height: 100%;<br />
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);<br />
-moz-opacity: 1;<br />
opacity: 1;<br />
}</span></p>
<p><span style="color: #ff0000;">.pagination{<br />
width: 400px; /*Width of pagination DIV. Total width should equal slider&#8217;s outer width (400+10+10=420)*/<br />
text-align: right;<br />
background-color: navy;<br />
padding: 5px 10px;<br />
}</span></p>
<p><span style="color: #ff0000;">.pagination a{<br />
padding: 0 5px;<br />
text-decoration: none;<br />
color: #00007D;<br />
background: white;<br />
}</span></p>
<p><span style="color: #ff0000;">.pagination a:hover, .pagination a.selected{<br />
color: #000;<br />
background-color: #FEE496;<br />
}</span></p></blockquote>
<p>To add a transparent border around the content slider you can do this. Note: I made the featured content slider smaller for this project.</p>
<p>Remove this:<br />
border: 10px solid navy;</p>
<p>Add this:<br />
background: url(/images/transpBlue10.png) repeat;<br />
padding:2px</p>
<p>So the code should look like this:</p>
<blockquote><p><span style="color: #0000ff;">.sliderwrapper{<br />
position: relative; /*leave as is*/<br />
overflow: hidden; /*leave as is*/<br />
background: url(/images/transpBlue10.png) repeat;<br />
border-bottom-width: 6px;<br />
width: 335px; /*width of featured content slider*/<br />
height: 200px;<br />
padding:2px<br />
}</span></p></blockquote>
<p>Next step is to edit the content area.</p>
<p>You will need to add this:<br />
border: 1px solid #DDD;<br />
margin: 4px 0 0 5px;<br />
padding: 2px;</p>
<p>So the code will look like this:</p>
<blockquote><p><span style="color: #0000ff;">.sliderwrapper .contentdiv{<br />
visibility: hidden; /*leave as is*/<br />
position: absolute; /*leave as is*/<br />
left: 0;  /*leave as is*/<br />
top: 0;  /*leave as is*/<br />
margin: 4px 0 0 5px;<br />
padding: 2px;<br />
background: #FFF;<br />
border: 1px solid #DDD;<br />
width: 322px; /*width of content DIVs within slider. Total width should equal slider&#8217;s inner width (390+5+5=400) */<br />
height: 100%;<br />
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);<br />
-moz-opacity: 1;<br />
opacity: 1;<br />
}</span></p></blockquote>
<p>Now we will edit the look of the pagination DIV.</p>
<p>Remove this:<br />
background-color: navy;<br />
width: 400px;</p>
<p>Add this:<br />
width: 419px;<br />
background: url(/images/transpBlue10.png) repeat;</p>
<p>So the code will look like this:</p>
<blockquote><p><span style="color: #0000ff;">.pagination{<br />
width: 319px; /*Width of pagination DIV. Total width should equal slider&#8217;s outer width (400+10+10=420)*/<br />
text-align: right;<br />
background: url(/images/transpBlue10.png) repeat;<br />
padding: 5px 10px;<br />
}</span></p></blockquote>
<p>Almost done! The last step is adding a effect to the pagination links.</p>
<p>Remove this:<br />
color: #00007D;<br />
background: white;</p>
<p>Add this:<br />
color: #FFF;<br />
background: url(/images/transpBlue25.png) repeat;</p>
<p>So the code will look like this:</p>
<blockquote><p><span style="color: #0000ff;">.pagination a{<br />
padding: 0 5px;<br />
text-decoration: none;<br />
color: #FFF;<br />
background: url(/images/transpBlue25.png) repeat;<br />
}</span></p></blockquote>
<p>Finish it off with a hover effect.</p>
<p>Remove this:<br />
color: #000;<br />
background-color: #FEE496;</p>
<p>Add this:<br />
color: #EEE;<br />
background: url(/images/transpBlue75.png) repeat;</p>
<p>So the code will look like this:</p>
<blockquote><p>.<span style="color: #0000ff;">pagination a:hover, .pagination a.selected{<br />
color: #EEE;<br />
background: url(/images/transpBlue75.png) repeat;<br />
}</span></p></blockquote>
<p>Here is the CSS file:<br />
<a rel="nofollow" target="_blank" href="http://designerfied.com/css/contentslider.css">contentslider.css</a></p>
<p>Here are the PNGs from this project.</p>
<p><a rel="nofollow" target="_blank" href="http://designerfied.com/wp-content/uploads/2008/09/transpblue75.png"><img class="alignnone size-medium wp-image-330" title="transpblue75" src="http://designerfied.com/wp-content/uploads/2008/09/transpblue75.png" border="0" alt="" width="50" height="50" /></a> <a rel="nofollow" target="_blank" href="http://designerfied.com/wp-content/uploads/2008/09/transpblue50.png"><img class="alignnone size-medium wp-image-329" title="transpblue50" src="http://designerfied.com/wp-content/uploads/2008/09/transpblue50.png" border="0" alt="" width="50" height="50" /></a> <a rel="nofollow" target="_blank" href="http://designerfied.com/wp-content/uploads/2008/09/transpblue25.png"><img class="alignnone size-medium wp-image-328" title="transpblue25" src="http://designerfied.com/wp-content/uploads/2008/09/transpblue25.png" border="0" alt="" width="50" height="50" /></a> <a rel="nofollow" target="_blank" href="http://designerfied.com/wp-content/uploads/2008/09/transpblue10.png"><img class="alignnone size-medium wp-image-327" title="transpblue10" src="http://designerfied.com/wp-content/uploads/2008/09/transpblue10.png" border="0" alt="" width="50" height="50" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/308/how-to-customize-dynamic-drives-featured-content-slider.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>DHTML tooltips with a transparent background</title>
		<link>http://designerfied.com/99/dhtml-tooltips-with-a-transparent-background.html</link>
		<comments>http://designerfied.com/99/dhtml-tooltips-with-a-transparent-background.html#comments</comments>
		<pubDate>Sun, 18 May 2008 00:12:18 +0000</pubDate>
		<dc:creator>Jake Hurst</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dhtml]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=99</guid>
		<description><![CDATA[I used the DHTML tooltips from Dynamic Drive and modified the CSS by adding a slick transparent png image to add a little better look to the mouse over effect. I included a dark.png for sites with dark colors and a light.png for for sites with lighter colors. Before:&#8230; After:&#8230; To install the DHTML tooltip &#8230;]]></description>
			<content:encoded><![CDATA[<p>I used the DHTML tooltips from <a rel="nofollow" target="_blank" title="tool-tips" href="http://www.dynamicdrive.com/dynamicindex5/dhtmltooltip.htm" target="_blank">Dynamic Drive</a> and modified the CSS by adding a slick transparent png image to add a little better look to the mouse over effect. I included a dark.png for sites with dark colors and a light.png for for sites with lighter colors.<br />
<strong>Before:&#8230;</strong><br />
<a rel="nofollow" target="_blank" href="http://designerfied.com/wp-content/uploads/2008/05/before-tips.jpg"><img class="alignnone size-full wp-image-102" title="before-tips" src="http://designerfied.com/wp-content/uploads/2008/05/before-tips.jpg" alt="" width="490" height="220" /></a></p>
<p><span id="more-99"></span><br />
<strong>After:&#8230;</strong><br />
<a rel="nofollow" target="_blank" href="http://designerfied.com/wp-content/uploads/2008/05/after-tips.jpg"><img class="alignnone size-full wp-image-103" title="after-tips" src="http://designerfied.com/wp-content/uploads/2008/05/after-tips.jpg" alt="" width="490" height="254" /></a><br />
To install the DHTML tooltip effect to your site just follow these simple instructions</p>
<p><a rel="nofollow" target="_blank" href="http://www.dynamicdrive.com/dynamicindex5/dhtmltooltip.htm" target="_blank">http://www.dynamicdrive.com/dynamicindex5/dhtmltooltip.htm</a></p>
<p>To add our transparent image to the tooltips just use the CSS below</p>
<p><strong>Dark colored sites</strong></p>
<p>#dhtmltooltip{<br />
background: url(/images/dark.png) repeat;<br />
color: #FFF;<br />
position: absolute;<br />
width: 150px;<br />
border: 1px solid black;<br />
padding: 2px;<br />
visibility: hidden;<br />
z-index: 100;<br />
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/<br />
filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);<br />
}</p>
<p><strong>Light colored sites</strong></p>
<p>#dhtmltooltip{<br />
background: url(/images/light.png)  repeat;<br />
color: #111;<br />
position: absolute;<br />
width: 150px;<br />
border: 1px solid black;<br />
padding: 2px;<br />
visibility: hidden;<br />
z-index: 100;<br />
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/<br />
filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);<br />
}</p>
<p><strong>Now for the images </strong><em>Just right click and save as</em></p>
<p><a rel="nofollow" target="_blank" href="http://designerfied.com/wp-content/uploads/2008/05/dark.png">Dark.PNG</a></p>
<p><a rel="nofollow" target="_blank" href="http://designerfied.com/wp-content/uploads/2008/05/light.png">Light.PNG</a></p>
<p>Please let me know if you have any trouble, I will try my best to help out.</p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/99/dhtml-tooltips-with-a-transparent-background.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Visual effects using only Dhtml</title>
		<link>http://designerfied.com/58/visual-effects-using-only-dhtml.html</link>
		<comments>http://designerfied.com/58/visual-effects-using-only-dhtml.html#comments</comments>
		<pubDate>Thu, 27 Mar 2008 11:52:21 +0000</pubDate>
		<dc:creator>Jake Hurst</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Dhtml]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://designerfied.com/visual-effects-using-only-dhtml.html</guid>
		<description><![CDATA[Take a look at this amazing site Dhteumeuleu.com. Gerard Ferrandez has created unbelievable visual effects using only dynamic html for animation. Here are 5 of my favorites from his site. imgPress-X distance and perception autumn II stippled memories theories of mind]]></description>
			<content:encoded><![CDATA[<p>Take a look at this amazing site<a rel="nofollow" target="_blank" href="http://www.dhteumeuleu.com/" target="_blank"> Dhteumeuleu.com</a>.    Gerard Ferrandez has created unbelievable visual effects using only dynamic html for animation.</p>
<p><img src="http://designerfied.com/wp-content/uploads/2008/03/amazing-dhtml-animation.jpg" alt="Amazing Dhtml Animation" /></p>
<p>Here are 5 of my favorites from his site.</p>
<p><span id="more-58"></span></p>
<p><a rel="nofollow" target="_blank" href="http://www.dhteumeuleu.com/runscript.php?scr=imgPress-X.html" target="_blank">imgPress-X</a></p>
<p><a rel="nofollow" target="_blank" href="http://www.dhteumeuleu.com/runscript.php?scr=imgPress-X.html" target="_blank"></a><a rel="nofollow" target="_blank" href="http://www.dhteumeuleu.com/runscript.php?scr=diapo-SH.html" target="_blank">distance and perception</a></p>
<p><a rel="nofollow" target="_blank" href="http://www.dhteumeuleu.com/runscript.php?scr=photo3D.html" target="_blank">autumn II</a></p>
<p><a rel="nofollow" target="_blank" href="http://www.dhteumeuleu.com/runscript.php?scr=photo3D.html" target="_blank"></a><a rel="nofollow" target="_blank" href="http://www.dhteumeuleu.com/runscript.php?scr=diapo-S.html" target="_blank">stippled memories</a></p>
<p><a rel="nofollow" target="_blank" href="http://www.dhteumeuleu.com/runscript.php?scr=diapo-S.html" target="_blank"></a><a rel="nofollow" target="_blank" href="http://www.dhteumeuleu.com/runscript.php?scr=image-flow.html" target="_blank">theories of mind</a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/58/visual-effects-using-only-dhtml.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching using disk: basic

Served from: designerfied.com @ 2012-05-22 06:44:40 -->
