<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="http://tech.saigonist.com/taxonomy/term/137/all" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>mobile</title>
    <link>http://tech.saigonist.com/taxonomy/term/137/all</link>
    <description></description>
    <language>en</language>
          <item>
    <title>Web viewports for mobile responsive websites</title>
    <link>http://tech.saigonist.com/b/code/web-viewports-mobile-responsive-websites</link>
    <description>&lt;span class=&quot;submitted-by&quot;&gt;May 16, 2016&lt;/span&gt;&lt;div class=&quot;field_tags&quot;&gt;&lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/mobile&quot;&gt;mobile&lt;/a&gt;&lt;/span&gt; &lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/web&quot;&gt;web&lt;/a&gt;&lt;/span&gt; &lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/responsive&quot;&gt;responsive&lt;/a&gt;&lt;/span&gt; &lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/css&quot;&gt;css&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;What is a viewport? You may have seen the meta-tag named &quot;viewport&quot; on newer mobile-friendly websites. The mobile (iOS) version of Safari introduced the &quot;viewport meta tag&quot; and &quot;scale&quot; on the viewport for mobile (scale optionally being one of the special values &lt;code&gt;minimum-scale&lt;/code&gt;, &lt;code&gt;maximum-scale&lt;/code&gt;, and &lt;code&gt;user-scalable&lt;/code&gt;).&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;A viewport is like a logical window. You are on one side of the window looking through to the...&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
     <pubDate>Mon, 16 May 2016 00:39:00 +0000</pubDate>
 <dc:creator>tomo</dc:creator>
 <guid isPermaLink="false">90 at http://tech.saigonist.com</guid>
  </item>
  <item>
    <title>Embed a YouTube video player and control it via JavaScript</title>
    <link>http://tech.saigonist.com/b/code/embed-youtube-video-player-and-control-it-javascript</link>
    <description>&lt;span class=&quot;submitted-by&quot;&gt;May 14, 2016&lt;/span&gt;&lt;div class=&quot;field_tags&quot;&gt;&lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/youtube&quot;&gt;youtube&lt;/a&gt;&lt;/span&gt; &lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/javascript&quot;&gt;javascript&lt;/a&gt;&lt;/span&gt; &lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/mobile&quot;&gt;mobile&lt;/a&gt;&lt;/span&gt; &lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/safari&quot;&gt;safari&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;YouTube has long made it easy to share and embed videos into websites by giving you the HTML code to just copy and paste wherever you like. Over the years, different technologies have been used to play videos on the web, from Flash &lt;code&gt;object&lt;/code&gt; elements to pure HTML5. YouTube&#039;s newest API for adding videos to web pages takes care of the technology, automatically choosing the best delivery method on a user by user basis.&lt;/p&gt;

&lt;p&gt;YT did have something called the &quot;YouTube JavaScript Player API&quot; but this is out of date so don&#039;t use it. Instead use the new...&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
     <pubDate>Fri, 13 May 2016 21:32:09 +0000</pubDate>
 <dc:creator>tomo</dc:creator>
 <guid isPermaLink="false">89 at http://tech.saigonist.com</guid>
  </item>
  <item>
    <title>How to detect a swipe touch event on mobile browsers with JavaScript</title>
    <link>http://tech.saigonist.com/b/code/how-detect-swipe-touch-event-mobile-browsers-javascript</link>
    <description>&lt;span class=&quot;submitted-by&quot;&gt;May 14, 2016&lt;/span&gt;&lt;div class=&quot;field_tags&quot;&gt;&lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/javascript&quot;&gt;javascript&lt;/a&gt;&lt;/span&gt; &lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/mobile&quot;&gt;mobile&lt;/a&gt;&lt;/span&gt; &lt;span class=&quot;label label-info&quot;&gt;&lt;a href=&quot;/tags/swipe&quot;&gt;swipe&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;Browsers have supported various mouse-based events like clicks, down to the detection of when the mouse button is down and when it&#039;s released. You can know the coordinates of the mouse cursor, all in JavaScript. Mobile interfaces have brought some new gestures beyond what desktops provided. One big set of such UI events is from the smartphone&#039;s screen allowing touch and even multi-touch. Multitouch allows more types of UI events.&lt;/p&gt;

&lt;p&gt;Many mobile apps support swiping, not just as a way to move a visible object around thescreen but applied for the whole screen. Tinder uses left swipe and...&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
     <pubDate>Fri, 13 May 2016 17:19:00 +0000</pubDate>
 <dc:creator>tomo</dc:creator>
 <guid isPermaLink="false">88 at http://tech.saigonist.com</guid>
  </item>
  </channel>
</rss>
