<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4285847782039097115</id><updated>2018-03-05T17:43:36.681-07:00</updated><title type='text'>Code Pond</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://codepond.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4285847782039097115/posts/default'/><link rel='alternate' type='text/html' href='http://codepond.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Chris Frees</name><uri>http://www.blogger.com/profile/08590286591413146497</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-foOZGonMwAk/UIghlZY6njI/AAAAAAAABZg/CuTxFog81ew/s1600/freeslogo.png'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4285847782039097115.post-7009556556981938504</id><published>2012-10-27T18:01:00.002-06:00</published><updated>2012-10-27T18:03:36.504-06:00</updated><title type='text'>CSS3 page fade in</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;If you ever see a page fade in, it is most likely done with Jquery. But it is also possible to do this with CSS3 animation. Here&#39;s how.&lt;br /&gt;&lt;br /&gt;First start by adding the animation property to the wrapper.&amp;nbsp; &lt;br /&gt;&lt;pre class=&quot;brush:css;&quot;&gt;::-moz-selection {&lt;br /&gt;      animation: fadein 3s;&lt;br /&gt;    -moz-animation: fadein 3s;&lt;br /&gt;    -webkit-animation: fadein 3s; &lt;br /&gt;    -o-animation: fadein 3s;&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;Now it&#39;s time to use the &lt;code&gt;@keyframes&lt;/code&gt; at rule.  &lt;br /&gt;&lt;pre&gt;@keyframes fadein {&lt;br /&gt;    from {&lt;br /&gt;        opacity:0;&lt;br /&gt;    }&lt;br /&gt;    to {&lt;br /&gt;        opacity:1;&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;@-webkit-keyframes fadein { /* Chrome &amp;amp; Safari */&lt;br /&gt;    from {&lt;br /&gt;        opacity:0;&lt;br /&gt;    }&lt;br /&gt;    to {&lt;br /&gt;        opacity:1;&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;@-moz-keyframes fadein { /* Firefox */&lt;br /&gt;    from {&lt;br /&gt;        opacity:0;&lt;br /&gt;    }&lt;br /&gt;    to {&lt;br /&gt;        opacity:1;&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;@-o-keyframes fadein { /* Opera */&lt;br /&gt;    from {&lt;br /&gt;        opacity:0;&lt;br /&gt;    }&lt;br /&gt;    to {&lt;br /&gt;        opacity: 1;&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;Try the &lt;a href=&quot;http://codepen.io/chrisfrees/full/Dkjmp&quot;&gt;demo&lt;/a&gt;. &lt;br /&gt;Also, here&#39;s a detailed article on &lt;a href=&quot;https://developer.mozilla.org/en-US/docs/CSS/Using_CSS_animations&quot;&gt;CSS3 animation&lt;/a&gt;. &lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codepond.blogspot.com/feeds/7009556556981938504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codepond.blogspot.com/2012/10/css3-page-fade-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4285847782039097115/posts/default/7009556556981938504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4285847782039097115/posts/default/7009556556981938504'/><link rel='alternate' type='text/html' href='http://codepond.blogspot.com/2012/10/css3-page-fade-in.html' title='CSS3 page fade in'/><author><name>Chris Frees</name><uri>http://www.blogger.com/profile/08590286591413146497</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-foOZGonMwAk/UIghlZY6njI/AAAAAAAABZg/CuTxFog81ew/s1600/freeslogo.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4285847782039097115.post-6970901549048400641</id><published>2012-10-24T17:08:00.001-06:00</published><updated>2012-10-24T17:23:01.207-06:00</updated><title type='text'>CSS Selection Styling</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Styling the selection color is an simple way to spice up your website and it can be done easily with a few lines of CSS. Here&#39;s how: &lt;br /&gt;&lt;pre class=&quot;brush:css;&quot;&gt;::-moz-selection {&lt;br /&gt;    background-color: #51B653;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;::selection {&lt;br /&gt;    background-color: #51B653;&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;The &lt;code&gt;::selection&lt;/code&gt; and &lt;code&gt;::-moz-selection&lt;/code&gt;selectors are supported in Firefox, Chrome, Safari, Opera, and IE9+. &lt;br /&gt;&lt;br /&gt;Sadly, their are&amp;nbsp;limitations on the CSS properties. You can use: background, color, outline, and cursor.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Here is a quick &lt;a href=&quot;http://codepen.io/chrisfrees/full/LrCde&quot;&gt;demo&lt;/a&gt; of &lt;code&gt;::selection&lt;/code&gt;.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codepond.blogspot.com/feeds/6970901549048400641/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codepond.blogspot.com/2012/10/css-selection-styling.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4285847782039097115/posts/default/6970901549048400641'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4285847782039097115/posts/default/6970901549048400641'/><link rel='alternate' type='text/html' href='http://codepond.blogspot.com/2012/10/css-selection-styling.html' title='CSS Selection Styling'/><author><name>Chris Frees</name><uri>http://www.blogger.com/profile/08590286591413146497</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-foOZGonMwAk/UIghlZY6njI/AAAAAAAABZg/CuTxFog81ew/s1600/freeslogo.png'/></author><thr:total>0</thr:total></entry></feed>