<?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/" >

<channel><title><![CDATA[Syntyl - The Lab]]></title><link><![CDATA[https://www.syntyl.com/the-lab]]></link><description><![CDATA[The Lab]]></description><pubDate>Sun, 09 Apr 2023 00:46:15 -0700</pubDate><generator>Weebly</generator><item><title><![CDATA[A Webkit slider that works on the iPad]]></title><link><![CDATA[https://www.syntyl.com/the-lab/a-webkit-slider-that-works-on-the-ipad]]></link><comments><![CDATA[https://www.syntyl.com/the-lab/a-webkit-slider-that-works-on-the-ipad#comments]]></comments><pubDate>Tue, 12 Feb 2013 15:34:11 GMT</pubDate><category><![CDATA[webkit]]></category><guid isPermaLink="false">https://www.syntyl.com/the-lab/a-webkit-slider-that-works-on-the-ipad</guid><description><![CDATA[HTML5 and webkit allows to build custom sliders which work well with the ipad. Nothing delights more iPad users more than those&nbsp;nonchalant&nbsp;swipes, which transform your screen effortlessly.&nbsp;Below is a snippet of how to customise the slider.&nbsp;NB: This code only works in Chrome and Safari.   .labSliderContainer input[type='range'] {  -webkit-appearance: none;  background-repeat: no-repeat;  background-color:transparent;  background-image: -webkit-gradient(linear, left top, left b [...] ]]></description><content:encoded><![CDATA[<div class="paragraph" style="text-align:left;">HTML5 and webkit allows to build custom sliders which work well with the ipad. Nothing delights more iPad users more than those&nbsp;nonchalant&nbsp;swipes, which transform your screen effortlessly.&nbsp;<br />Below is a snippet of how to customise the slider.&nbsp;<br /><br />NB: This code only works in Chrome and Safari.</div>  <div><div id="326105332657722285" align="left" style="width: 100%; overflow-y: hidden;" class="wcustomhtml"><pre class="prettyprint lang-css"> .labSliderContainer input[type='range'] {<br/>  -webkit-appearance: none;<br/>  background-repeat: no-repeat;<br/>  background-color:transparent;<br/>  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#003669), <br/>color-stop(50%,#004484), color-stop(51%,#004484), color-stop(100%,#041e45));<br/>  -webkit-background-size: 20% 100%;<br/>  background-size: 20% 100%;<br/>  height: 20px;<br/>  border-radius: 40px;<br/>  width: 400px;<br/> }<br/>  .labSliderContainer input[type='range']::-webkit-slider-thumb {<br/>  -webkit-appearance: none;<br/>  position: relative;<br/>  top: -1px;<br/>  z-index: 1;<br/>  width: 40px;<br/>  height: 21px;<br/>  -webkit-border-radius: 40px;<br/>  -moz-border-radius: 40px;<br/>  border-radius: 40px;<br/>  border: 1px solid #444;<br/>  background-image: -webkit-gradient(linear, left top, left bottom, <br/>color-stop(0%,#f2f2f2), color-stop(50%,#aaa), color-stop(51%,#aaa), color-stop(100%,#d2d2d2));<br/> }<br/> </pre></div>    </div>]]></content:encoded></item></channel></rss>