<?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>Luongo Vincenzo - Blog &#187; Mobile</title>
	<atom:link href="http://history.luongovincenzo.it/websites/my_website/v6/blog/category/mobile/feed/" rel="self" type="application/rss+xml" />
	<link>https://history.luongovincenzo.it/websites/my_website/v6/blog</link>
	<description>    CiÃ² che non conoscete vi potrebbe danneggiare - Kevin Mitnick</description>
	<lastBuildDate>Mon, 09 Dec 2013 11:04:30 +0000</lastBuildDate>
	<language>it-IT</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.1</generator>
	<item>
		<title>[jQuery Mobile] How to delete the border-radius from the tag Flip Switch</title>
		<link>https://history.luongovincenzo.it/websites/my_website/v6/blog/jquery-mobile-eliminare-il-border-radius-dal-tag-flip-switch/</link>
		<comments>https://history.luongovincenzo.it/websites/my_website/v6/blog/jquery-mobile-eliminare-il-border-radius-dal-tag-flip-switch/#comments</comments>
		<pubDate>Wed, 25 Sep 2013 13:13:20 +0000</pubDate>
		<dc:creator><![CDATA[Vincenzo]]></dc:creator>
				<category><![CDATA[HTML5/CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.luongovincenzo.it/blog/?p=77</guid>
		<description><![CDATA[Salve a tutti, in questo articolo spiegerÃ² come eliminare il border radius dal tag custom Flip Switch. La versione che andremo a trattare Ã¨ l&#8217;ultima stabile, ovvero la 1.3.2 . Le classi che richiedono la personalizzazione sono: .ui-btn-corner-all .ui-corner-all .ui-slider-switch Per eliminare il border-radious (bombatura o arrotondamento) di questi &#8220;oggetti&#8221; basta implementare dopo l&#8217;inclusione del [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Salve a tutti,</p>
<p>in questo articolo spiegerÃ² come eliminare il border radius dal tag custom <a href="http://view.jquerymobile.com/1.3.2/dist/demos/widgets/sliders/switch.html" title="Flip Switch Toggle" target="_blank">Flip Switch</a>.</p>
<p>La versione che andremo a trattare Ã¨ l&#8217;ultima stabile, ovvero la 1.3.2 .</p>
<p>Le classi che richiedono la personalizzazione sono:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="text" style="font-family:monospace;">.ui-btn-corner-all
.ui-corner-all
.ui-slider-switch</pre></td></tr></table></div>

<p>Per eliminare il border-radious (bombatura o arrotondamento) di questi &#8220;oggetti&#8221; basta implementare <strong>dopo</strong> l&#8217;inclusione del css di jquery mobile il seguente style:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="css" style="font-family:monospace;">&nbsp;
.ui-btn-corner-all<span style="color: #00AA00;">,</span>
.ui-corner-all<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.ui-slider-switch</span> <span style="color: #00AA00;">&#123;</span>
&nbsp;
    -webkit-border-top-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -webkit-border-top-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -webkit-border-bottom-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -webkit-border-bottom-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
&nbsp;
    -moz-border-radius-topleft<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -moz-border-radius-topright<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -moz-border-radius-bottomright<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -moz-border-radius-bottomleft<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">border-top-left-radius</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border-top-right-radius</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border-bottom-right-radius</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border-bottom-left-radius</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>CosÃ¬ facendo avrete il vostro flip switch completamente esente dal border radius.</p>
<p>DEMO: <a href="http://jsfiddle.net/e26ac/1/" title="http://jsfiddle.net/e26ac/1/" target="_blank">http://jsfiddle.net/e26ac/1/</a></p>
<p>Saluti <img src='http://history.luongovincenzo.it/websites/my_website/v6/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>https://history.luongovincenzo.it/websites/my_website/v6/blog/jquery-mobile-eliminare-il-border-radius-dal-tag-flip-switch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[CSS/Phonegap/Android] How to customize select tag</title>
		<link>https://history.luongovincenzo.it/websites/my_website/v6/blog/cssphonegapandroid-personalizzare-tag-select/</link>
		<comments>https://history.luongovincenzo.it/websites/my_website/v6/blog/cssphonegapandroid-personalizzare-tag-select/#comments</comments>
		<pubDate>Mon, 10 Jun 2013 19:16:38 +0000</pubDate>
		<dc:creator><![CDATA[Vincenzo]]></dc:creator>
				<category><![CDATA[HTML5/CSS]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Phonegap/Cordova]]></category>

		<guid isPermaLink="false">http://www.luongovincenzo.it/blog/?p=36</guid>
		<description><![CDATA[Salve a tutti, oggi mi sono imbattuto in una situazione alquanto strana. Avevo il bisogno di personalizzare il tag HTML select e ho iniziato ad eseguire la personalizzazione sul progetto iOS (xCode). Una volta completata la personalizzazione, ho testato il tutto e funzionava una meraviglia. Dopo aver portato la patch su progetto android la personalizzazione [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Salve a tutti,</p>
<p>oggi mi sono imbattuto in una situazione alquanto strana.<br />
Avevo il bisogno di personalizzare il tag HTML <i>select</i> e ho iniziato ad eseguire la personalizzazione sul progetto iOS (xCode).<br />
Una volta completata la personalizzazione, ho testato il tutto e funzionava una meraviglia.<br />
Dopo aver portato la patch su progetto android la personalizzazione NON FUNZIONAVA PER NIENTE!!!!<br />
Cercando un pÃ² in giro (ben 25 minuti) ho trovato una proprietÃ  del CSS che risolveva il problema.</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="css" style="font-family:monospace;">select <span style="color: #00AA00;">&#123;</span>
    -webkit-appearance<span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>cosÃ¬ facendo tutte le personalizzazione del tag select (come cambiare colore, font, inserire un background, ecc&#8230;) verranno accolte dal browser ed interpretate correttamente.</p>
<p>Spero servirÃ  a qualcuno.</p>
<p>Ciauz</p>
]]></content:encoded>
			<wfw:commentRss>https://history.luongovincenzo.it/websites/my_website/v6/blog/cssphonegapandroid-personalizzare-tag-select/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[MOBILE] How to autoscrolling for android and iOS (Phonegap/Cordova)</title>
		<link>https://history.luongovincenzo.it/websites/my_website/v6/blog/autoscrolling-compatibile-con-android-e-ios-phonegapcordova/</link>
		<comments>https://history.luongovincenzo.it/websites/my_website/v6/blog/autoscrolling-compatibile-con-android-e-ios-phonegapcordova/#comments</comments>
		<pubDate>Tue, 28 May 2013 08:08:30 +0000</pubDate>
		<dc:creator><![CDATA[Vincenzo]]></dc:creator>
				<category><![CDATA[HTML5/CSS]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Phonegap/Cordova]]></category>

		<guid isPermaLink="false">http://www.luongovincenzo.it/blog/?p=12</guid>
		<description><![CDATA[Eccomi qui, come primo articolo vi condivido un&#8217;autoscrolling per chat (alla whatsapp o facebook messanger) che vi permetterÃ  di rendere la vostra chat molto piÃ¹ comoda da vsualizzare. Dopo tanti tentativi e aiuti a destra e a manca, sono riuscito ad avere un codice HTML5/CSS/jQuery compatibile per quasi tutti i device da android 2.3.x -&#62; [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Eccomi qui, come primo articolo vi condivido un&#8217;autoscrolling per chat (alla whatsapp o facebook messanger) che vi permetterÃ  di rendere la vostra chat molto piÃ¹ comoda da vsualizzare.</p>
<p>Dopo tanti tentativi e aiuti a destra e a manca, sono riuscito ad avere un codice HTML5/CSS/jQuery compatibile per quasi tutti i device da android 2.3.x -&gt; 4.x.x ad iOS 5 e 6</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;!</span>DOCTYPE html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>head<span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;cordova-2.3.0.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;jquery-1.8.3.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
  <span style="color: #339933;">&lt;</span>style<span style="color: #339933;">&gt;</span>
    div.<span style="color: #660066;">demo</span> <span style="color: #009900;">&#123;</span>
        background<span style="color: #339933;">:</span>#CCCCCC none repeat scroll <span style="color: #CC0000;">0</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
        border<span style="color: #339933;">:</span>3px solid #<span style="color: #CC0000;">666666</span><span style="color: #339933;">;</span>
        margin<span style="color: #339933;">:</span>5px<span style="color: #339933;">;</span>
        padding<span style="color: #339933;">:</span>5px<span style="color: #339933;">;</span>
        position<span style="color: #339933;">:</span>relative<span style="color: #339933;">;</span>
        width<span style="color: #339933;">:</span>200px<span style="color: #339933;">;</span>
        height<span style="color: #339933;">:</span>100px<span style="color: #339933;">;</span>
        overflow<span style="color: #339933;">:</span>auto<span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
  p <span style="color: #009900;">&#123;</span> margin<span style="color: #339933;">:</span>10px<span style="color: #339933;">;</span>padding<span style="color: #339933;">:</span>5px<span style="color: #339933;">;</span>border<span style="color: #339933;">:</span>2px solid #<span style="color: #CC0000;">666</span><span style="color: #339933;">;</span>width<span style="color: #339933;">:</span>1000px<span style="color: #339933;">;</span>height<span style="color: #339933;">:</span>1000px<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
  <span style="color: #339933;">&lt;/</span>style<span style="color: #339933;">&gt;</span>
  <span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://code.jquery.com/jquery-latest.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>head<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>body<span style="color: #339933;">&gt;</span>
  <span style="color: #339933;">&lt;</span>div <span style="color: #FF0000;">class</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;demo&quot;</span><span style="color: #339933;">&gt;&lt;</span>h1<span style="color: #339933;">&gt;</span>lalala<span style="color: #339933;">&lt;/</span>h1<span style="color: #339933;">&gt;&lt;</span>p<span style="color: #339933;">&gt;</span>Hello<span style="color: #339933;">&lt;/</span>p<span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
    <span style="color: #006600; font-style: italic;">//window.setTimeout(function(){alert(&quot;testing&quot;);$(&quot;div.demo&quot;).scrollTop(600)},2000);</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;div.demo&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;overflow&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;hidden&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;div.demo&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">scrollTop</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">600</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;div.demo&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;overflow&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;auto&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
<span style="color: #339933;">&lt;/</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>https://history.luongovincenzo.it/websites/my_website/v6/blog/autoscrolling-compatibile-con-android-e-ios-phonegapcordova/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
