<?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>Tech.It.2.Me-&#62;{By.Anton.Perez} &#187; UI</title>
	<atom:link href="http://antonperez.com/category/ui/feed/" rel="self" type="application/rss+xml" />
	<link>http://antonperez.com</link>
	<description>Technical satisfaction guaranteed...</description>
	<lastBuildDate>Fri, 13 Apr 2012 03:32:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Web 2.0: Gray out the screen</title>
		<link>http://antonperez.com/2007/12/18/web-20-grey-out-the-screen/</link>
		<comments>http://antonperez.com/2007/12/18/web-20-grey-out-the-screen/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 21:05:49 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://antonperez.com/2007/12/14/web-20-grey-out-the-screen/</guid>
		<description><![CDATA[This snippet grays out the screen and allows you to create a modal environment. A gray out is useful for creating a DHTML dialog box, or showing off a picture or video. While a gray out is active, most interactive elements on the page (links, etc.) are inactive &#8211; you&#8217;ve probably seen this on the [...]]]></description>
			<content:encoded><![CDATA[<p>This snippet <q>grays</q> out the screen and allows you to create a <q><abbr>modal</abbr></q> environment. A gray out is useful for creating a DHTML dialog box, or showing off a picture or video. While a gray out is active, most interactive elements on the page (links, etc.) are inactive &#8211; you&#8217;ve probably seen this on the new My Yahoo! page.</p>
<pre>function grayOut(vis, options) {
  // Pass true to gray out screen, false to ungray
  // options are optional.  This is a JSON object with the following (optional) properties
  // opacity:0-100         // Lower number = less grayout higher = more of a blackout
  // zindex: #             // HTML elements with a higher zindex appear on top of the gray out
  // bgcolor: (#xxxxxx)    // Standard RGB Hex color code
  // grayOut(true, {'zindex':'50', 'bgcolor':'#0000FF', 'opacity':'70'});
  // Because options is JSON opacity/zindex/bgcolor are all optional and can appear
  // in any order.  Pass only the properties you need to set.
  var options = options || {};
  var zindex = options.zindex || 50;
  var opacity = options.opacity || 70;
  var opaque = (opacity / 100);
  var bgcolor = options.bgcolor || '#000000';
  var dark=document.getElementById('darkenScreenObject');
  if (!dark) {
    // The dark layer doesn't exist, it's never been created.  So we'll
    // create it here and apply some basic styles.
    // If you are getting errors in IE see: http://support.microsoft.com/default.aspx/kb/927917
    var tbody = document.getElementsByTagName("body")[0];
    var tnode = document.createElement('div');           // Create the layer.
        tnode.style.position='absolute';                 // Position absolutely
        tnode.style.top='0px';                           // In the top
        tnode.style.left='0px';                          // Left corner of the page
        tnode.style.overflow='hidden';                   // Try to avoid making scroll bars
        tnode.style.display='none';                      // Start out Hidden
        tnode.id='darkenScreenObject';                   // Name it so we can find it later
    tbody.appendChild(tnode);                            // Add it to the web page
    dark=document.getElementById('darkenScreenObject');  // Get the object.
  }
  if (vis) {
    // Calculate the page width and height
    if( document.body &amp;&amp; ( document.body.scrollWidth || document.body.scrollHeight ) ) {
        var pageWidth = document.body.scrollWidth+'px';
        var pageHeight = document.body.scrollHeight+'px';
    } else if( document.body.offsetWidth ) {
      var pageWidth = document.body.offsetWidth+'px';
      var pageHeight = document.body.offsetHeight+'px';
    } else {
       var pageWidth='100%';
       var pageHeight='100%';
    }
    //set the shader to cover the entire page and make it visible.
    dark.style.opacity=opaque;
    dark.style.MozOpacity=opaque;
    dark.style.filter='alpha(opacity='+opacity+')';
    dark.style.zIndex=zindex;
    dark.style.backgroundColor=bgcolor;
    dark.style.width= pageWidth;
    dark.style.height= pageHeight;
    dark.style.display='block';
  } else {
     dark.style.display='none';
  }
}</pre>
<p>Thanks to <a href="http://www.hunlock.com/">Peter Hunlock</a> for sharing this.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2007/12/18/web-20-grey-out-the-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iGoogle vs. My Yahoo!</title>
		<link>http://antonperez.com/2007/09/07/igoogle-vs-my-yahoo/</link>
		<comments>http://antonperez.com/2007/09/07/igoogle-vs-my-yahoo/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 16:00:22 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[Resource]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=287</guid>
		<description><![CDATA[I&#8217;ve had my Yahoo! screen name since the mid 90s and my Google screen name since its beta days. Both of of them allow you to customize your own, personalized home page Web 2.0 style. That is AJAX technologies and support for gadgets/widgets is available and extensively used for a more superior, less lag time [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had my Yahoo! screen name since the mid 90s and my Google screen name since its beta days. Both of of them allow you to customize your own, personalized home page <a href="http://en.wikipedia.org/wiki/Web_2">Web 2.0</a> style. That is AJAX technologies and support for gadgets/widgets is available and extensively used for a more superior, less lag time user experience.</p>
<p>Of the two, I favor iGoogle more mainly because it is ad-less. This means no ads appear on your &#8220;home page,&#8221; unlike My Yahoo!&#8217;s where huge banner ads appear on the top of the page. It&#8217;s understandable that ads result in a steady cash flow, but they&#8217;re just plain eye sores.</p>
<p>I particularly like iGoogle&#8217;s &#8220;You might also like&#8230;&#8221; widget option, as it helps me choose the coolest or most useful gadget (this is subjective of course) out of the gazillion gadgets; mighty handy.</p>
<p>Additionally, the themes available are better looking and more streamlined than My Yahoo!&#8217;s; for example, a nice feature is the theme&#8217;s top banner changing color and activity based on the current time. I&#8217;m currently using the &#8220;Tea House&#8221; theme. It&#8217;s nothing spectacular but quite interesting and fun, which makes me want to go to &#8220;my home page&#8221; more frequently. =0)</p>
<p>One thing I&#8217;d like to see on iGoogle, however, is My Yahoo!&#8217;s AJAX/JavaScript feature where <em>onmouseover </em>the details of that text is shown in a modal-type window (not available on everything, though). Yeah, iGoogle&#8217;s page has the &#8216;+&#8217; ellipses to do that but My Yahoo!&#8217;s is way easier to use.</p>
<p>To make things easier, I&#8217;ll list and compare these two giants&#8217; personal home page services/features [of what I can remember or notice] side-by-side:</p>
<table cellspacing="0" cellpadding="2" width="400" border="1">
<tbody>
<tr>
<td valign="top" width="133"><strong>Feature</strong></td>
<td valign="top" width="133"><strong>iGoogle</strong></td>
<td valign="top" width="133"><strong>My Yahoo!</strong></td>
</tr>
<tr>
<td valign="top" width="133">Web 2.0 enabled</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">Yes</td>
</tr>
<tr>
<td valign="top" width="133">Ad-Free</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">No</td>
</tr>
<tr>
<td valign="top" width="133">RSS Subscriptions</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">Yes</td>
</tr>
<tr>
<td valign="top" width="133">Theme Support</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">Yes</td>
</tr>
<tr>
<td valign="top" width="133">Tab Support</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">Yes</td>
</tr>
<tr>
<td valign="top" width="133">E-mail Integration</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">Yes</td>
</tr>
<tr>
<td valign="top" width="133">Calendar Integration</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">Yes</td>
</tr>
<tr>
<td valign="top" width="133">Web History</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">No</td>
</tr>
<tr>
<td valign="top" width="133">Bookmarks</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">Yes</td>
</tr>
<tr>
<td valign="top" width="133">Page Column Support</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">Yes</td>
</tr>
<tr>
<td valign="top" width="133">Documents</td>
<td valign="top" width="133">Yes</td>
<td valign="top" width="133">No</td>
</tr>
<tr>
<td valign="top" width="133">Pageload Speed</td>
<td valign="top" width="133">Excellent</td>
<td valign="top" width="133">Excellent</td>
</tr>
</tbody>
</table>
<p>Interestingly, I read this <a href="http://www.webpronews.com/insiderreports/2005/12/29/men-are-from-google-women-are-from-yahoo">article</a> stating that men use Google, while women use Yahoo!. So is it just because I&#8217;m a man that I prefer Google over My Yahoo!? No, I don&#8217;t think so; from my day to day use/experience, I find myself more productive and in-tune with iGoogle.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2007/09/07/igoogle-vs-my-yahoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BumpTop desktop</title>
		<link>http://antonperez.com/2007/08/13/bumptop-desktop/</link>
		<comments>http://antonperez.com/2007/08/13/bumptop-desktop/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 22:47:47 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[New Technology]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=196</guid>
		<description><![CDATA[I&#8217;m not sure if you&#8217;ve seen this or heard about it, but this is quite impressive: Interact by pushing, pulling and piling documents&#8230;on your computer&#8217;s desktop interface. Wow! I&#8217;m still digesting (read: thinking/analyzing) how this will affect the computer world. So, just check out the website and video. BumpTop is a fresh and engaging new [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure if you&#8217;ve seen this or heard about it, but this is quite impressive: <em>Interact by pushing, pulling and piling documents&#8230;<strong>on your computer&#8217;s desktop interface</strong></em>. Wow! I&#8217;m still digesting (read: thinking/analyzing) how this will affect the computer world. So, just check out the <a href="http://bumptop.com/">website</a> and <a href="http://bumptop.com/youtube">video</a>.</p>
<p><a href="http://antonperez.com/wp-content/uploads/2007/10/image15.png"><img style="border-right: 0px; border-top: 0px; margin: 10px 0px 0px 10px; border-left: 0px; border-bottom: 0px" height="148" alt="image" src="http://antonperez.com/wp-content/uploads/2007/10/image-thumb8.png" width="244" align="right" border="0"></a> BumpTop is a fresh and engaging new way to interact with your computer desktop. You can pile and toss documents like on a real desk. Break free from the rigid and mechanical style of standard point-and-click desktops. Interact by pushing, pulling and piling documents with elegant, self revealing gestures. BumpTop&#8217;s stunning interface makes clever use of 3D presentation and smooth physics-based animations for an engaging, vivid user experience.</p>
<p>Take it easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2007/08/13/bumptop-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

