Placed in: Home arrow Programming arrow The iPhone unlock screen in xHTML, CSS and jQuery
The iPhone unlock screen in xHTML, CSS and jQuery

The iPhone: Everybody knows what it is, many people "played around" with the gadget and most people love it. I also own one of these amazing smartphones, and the looks of the software is really, really sleek and innovative (Just like we're used from Apple).

I wanted to transfer (some) of these amazing designs to a webpage to re-create the same look and feel for webbrowsers. Today, I'm going to show you how to create The iPhone unlock screen in xHTML, CSS and jQuery.

The iPhone unlock screen in xHTML, CSS and jQuery

OK, maybe not fully the "feeling" (look and feel) from the iPhone, since I can't make any webbrowser react to placing your finger on the screen, but your mouse will do the trick.

Demo The iPhone unlock screen in xHTML, CSS and jQuery   Download The iPhone unlock screen in xHTML, CSS and jQuery

Features:

  • XHTML and CSS valid.
  • "Timer" displays the current time (Just like the iPhone).
  • "Date" displays the current date (Just like the iPhone).
  • Pretty sleek interface, including see-through elements (Just like the iPhone).
  • Changeable background.
  • Tested and working on Firefox 3, Internet Explorer 7 and Safari 3.

Known issues

  • The "slider" doesn't slide back (what the iPhone does).
  • The "unlock animation" isn't exactly the same as the iPhone.
  • Doesn't work on an actual iPhone.

Other than those minor issues, it works as expected. I'm planning to make some more of these "iPhone style" webpages, so subscribe to the feed if you want to keep updated. Want to know how I created it? Check it out.

Resources

Before I started, I needed some reference material to work with.

  • For the beautiful background image, I took a wallpaper from SocWall.
  • For the high resolution iPhone layout, Teehan+lax helpt me out.
  • I wanted to use the Slider component from jQuery UI.
  • I wanted to use jQuery for the functionality. The last version (v. 1.3.0) isn't compatible (yet) with the slider component, and therefor I'm using v. 1.2.6.
  • Using the jQuery slider component was pretty hard, Ryan helped me out a lot here.
  • To display the current date and time with JavaScript, I used WebDevelopersNotes as a resource.

With all resources set, on to the next step.

xHTML

When you look in the source of the page, you'll see that the xHTML used isn't very complex.

 
<div id="iphone-scrollcontainer">
   <div id="iphone-inside">
      <div id="unlock-top">
         <p id="timepicker" class="time">08:23</p>
         <p id="datepicker" class="date">Wednesday, July 6</p>
      </div>
      <div id="unlock-spacer">
         &nbsp;
      </div>
      <div id="unlock-bottom">
         <div id="unlock-slider-wrapper">
            <div id="unlock-slider">
               <div id="unlock-handle"></div>
            </div>
         </div>
       </div>
    </div>
</div>
  • #iphone-scrollcontainer will be the overall container that holds all other elements.
  • #iphone-inside will have the same width & height as the container, but will be used to place the background image that'll fade out.
  • #unlock-top is used for the top of the unlock screen, holding the time and date.
  • #timepicker & &datepicker; will be used to change into the current time and date.
  • #unlock-spacer is needed to push the bottom down.
  • #unlock-bottom is the place for the bottom.
  • #unlock-slider-wrapper is the container for the slider.
  • #unlock-slider is the place where the handle can slide, used by the jQuery slider.
  • #unlock-handle needed by the jQuery slider component: The actual handle for the slider.

CSS

Now for the CSS part. We're going to use absolute positioning for this since the iPhone container will not resize. I'm only going to explain some things (not all) of the CSS file.

 
#iphone-scrollcontainer {
   height:461px;
   width:320px;
   position:absolute;
   top:140px;
   left:40px;
   background-color:#000000;
}
 
#iphone-inside {
   height:100%;
   width:100%;
   background-image:url(../images/background.png);
}
 
#unlock-spacer {
   height:272px;
}
  • #iphone-scrollcontainer has a size of 461 by 320 px. It is asbsolute positioned from the top left corner of the page, moved 140px down and 40 px to the right. The container has a black (#000000) background color.
  • #iphone-inside holds the backround image (background.png). The reason why this isn't placed in the scollcontainer, is because the inside will be faded out by jQuery and the black background from the scrollcontainer will remain.
  • #unlock-spacer has a height of 272px, because the total height is 461px. From this total height, the top (95px) and the bottom (94px) needs to be substracted, leaving 272px for the spacer.

JavaScript

At this point, we already have a pretty nice interface. For some interaction, we'll need to add some JavaScript. Like I said, I used the 1.2.6 version of jQuery to stay compatible with the Slider component. After including jquery-1.2.6.min.js, ui.core-1.5.3.js and ui.slider.js I created a new file called iphone-unlock.js with the following (Not the complete code):

 
$(document).ready(function()
{
   // Set the slider to be sliding
   $("#unlock-slider").slider({
   handle: "#unlock-handle",
   animate:true,
   stop: function(e,ui)
   {
      if($("#unlock-handle").position().left == 205)
      {
         unlock();
      }
      else
      {
         // Should slide back, but can't create it
         // Reason: When calling "$("#unlock-slider").slider("moveTo", 0);"
         // a loop is created, causing to crash the page
      }
   }});
   
   var unlock = function()
   {
      $("#unlock-bottom").fadeOut("normal", function(){
         $("#unlock-top").slideUp("fast", function(){
            $("#iphone-inside").fadeOut("slow", function(){
               window.location="index.html";  
        });  
      });                  
    });
  }
});
  • handle: tells the Slider component that the node is used as the handle.
  • animate: is set to true so when users click in the slider, it'll smootly animate to that position.
  • stop: is the function that's called when the slider stops. At that point, the slider checks if it's on his end (205px from the left). If so, it unlocks. If not, ht should slide back, but I can't create this effect (See the comments). If anyone knows a work-around for this, please let me know.
  • unlock function first fadeOuts the bottom, afster that it slides up the top and last it fades out the background image. Than it re-directs to another page, but in this case it's the same page.

All other code should be self-explanatory.

Conclusion and Download

Looking back, I think this is one pretty cool way of using the jQuery framework. With the sleek interface of the iPhone, what's not to like? Although not exactly everything is the same as the gadget, it still manages to get the iPhone feeling in your webbrowser.

Demo The iPhone unlock screen in xHTML, CSS and jQuery   Download The iPhone unlock screen in xHTML, CSS and jQuery

That's it! Hoped you learned something new today and start loving the jQuery framework (like I do). Be prepared to expect more jQuery / CSS / xHTML iPhone UI articles in the future.

Update

Martin provided a fix for the "not sliding back". He also made some adjustments to the code to make it look more like an actual iPhone, like the glowing slider and the same effect.

Thanks! I've updated the demo page and download package.


Tags:  iphone mac screen jquery xhtml css

Interested in this topic? You might enjoy another article I've written called

Did you like this article? Subscribe to my feed or email to keep updated on new articles.

Spread the word and submit to:
Digg!Reddit!Del.icio.us!Facebook!StumbleUpon!
Comments
Add NewSearchRSS
Garrett W.   2009-01-17 11:17:05
Gravatar image found another issue or two. if you click at the right-most spot on the bar, the slider moves there but does not activate the unlock like it should.
but more importantly, i suppose: the real iphone does not slide to whatever position you click. but i'm sure you knew that.
i don't know any jQuery, but i'm wondering if it provides all that you'd need to recreate the slider perfectly. for example, some simple mouseup and mousedown triggers would be useful, in the case that either (1) you lift your finger without completing the entire slide, or (2) you complete the slide without lifting your finger, in which case it should still unlock.
Marco   2009-01-17 11:29:03
Gravatar image Hi Garret,

Thank you for your comment.

The reason why the slider doesn't "unlock" when you click the right-most spot on the bar, is because the "animate" is set to "true". The "stop" variable (for a strange reason) get's triggered when clicked which means jQuery thinks that the left position is still zero, eventhough it's going to move. When "animate" is removed (changing it back to the default "false" ), clicking the right-most point will make it work.

In this example, I wanted to use (and explain) the work of the UI Slider. To create a better unlock screen, you should actually work with the "jQuery UI Draggables", which provide you with more flexibility to actually drag items around (which is what you want). In this example, I wanted to show how to actually slide the slider.

Maybe I'll refactor the code some day and make it more "sliding" like the actual phone ;) . Comments like yours support me to do so!
sa - sa   2010-10-28 09:18:09
Gravatar image Very successful in both content and style sheets. Thanks webmaster and content editor
Sa
Sarah   2009-01-17 12:37:04
Gravatar image That is really really nice, :)

Source download isn't working for me though, can't wait to get my hands on it!
Marco - Download page   2009-01-17 12:39:16
Gravatar image Hi Sarah, thank you for your compliment!

Strange that you can't get the download working :( . Try visiting the "download details" page for this download and try the download button there.

If it still doesn't work, please contact me (use contact page) and I'll send you the source files myself :) .
Ole   2009-01-17 18:33:57
Gravatar image Just wanted to day that is also works perfectly in Opera 9.6 ^^
Marco   2009-01-17 20:27:23
Gravatar image Hi Ole, thanks for letting me know! Hope you enjoyed it ;) .

Greetings,,,
Liam Best - Slide back?   2009-01-19 09:35:46
Gravatar image Hey mate, regarding your "Can't slide back due to loop" error, try an if like this;
Quote:

i f ( $( " # u n l o c k - h a n d l e " ) . p o s i t i o n ( ) . l e f t ! = 0 ) {
// Slide back function
}
Martin   2009-01-19 15:08:13
Gravatar image This works like a charm :cheer:
Quote:

if($("#unlock-handle";).position().left == 205)
{
unlock();
}
else
{
$("#unlock-handle";).animate({left: 0}, 200 );
}
Marco - Awesome! Thanks!   2009-01-19 15:25:31
Gravatar image Damn Martin, thanks for that! I was so blinded by the slider component and it's functionality that I didn't thought the simple jQuery "animate" function would do the trick too.

I've changed the demo / download package with the modified code and I've added your credit :).

Once again, thank you for helping me (and others) out here! Still learning every day ;) .
Xander   2009-01-19 14:45:37
Gravatar image Nice work, it does look pretty neat. It's be good to see it automatically swing back, shame that as you said, it seems to be looping something.
Might also be worth adding a handle that when the slider is moved for the first time the text fades out. It's probably also possible to create a variable that fades it in and out depending on the distance moved, but I can imagine that being pretty memory intensive.
Martin   2009-01-19 14:57:13
Gravatar image @Xander:
I've got the opacity and swing bang working now. ill post an demo on my site soon.
if its OK with the original author?

//Martin
Gaya - Good job   2009-01-19 16:39:17
Gravatar image Nice one Marco.
Good to see that everyone is helping you improve the source.
Josh   2009-01-19 21:29:15
Gravatar image It's also working in Opera 9.63 - Windows with one exception:
after firstly sliding back (not going to the end - right) you need to click somewhere else to slide it again.
travis - linking   2009-01-20 22:41:07
Gravatar image anyone know how to link to another page after you "unlock the phone"? can you set the code so the slide acts like clicking a link?
Marco   2009-01-21 09:42:56
Gravatar image When you open up the "/iphone-unlock.js", you'll find the following code:
Quote:
{window.location="index.html";});

Simply change the "index.html" to something else and you're ready to go :).

Good luck!
Travis   2009-01-21 15:20:52
Gravatar image Thanks, works perfectly. I must have skipped right over that
Dainis Graveris - Great idea   2009-01-20 22:47:32
Gravatar image Huh, thanks for idea and work, I didn't have any idea how to create something like this before, looks hot :)
Ryan - Is it possible to make an i-frame within the iphon   2009-01-21 16:41:44
Gravatar image Hello guys ....

Is it possible to make an i-frame within the iphone? if so , how?

I wana link it to other sites etc.

instead of after unlocking going to the page you want ...

thanks
Marco - iframe?   2009-01-21 17:53:47
Gravatar image You could remove all elements inside the "iphone-scrollcontainer" nodes which than leaves you with only the iPhone background. Place your iframe inside that container, give it a src & add the correct width & height and that should do the trick.

Good luck!
Ryan - How to centre align the iphone?   2009-01-21 16:46:05
Gravatar image How to centre align the iphone?
Marco   2009-01-21 17:54:54
Gravatar image Currently, the iPhone has been set on a fixed position. If you want to have it center-aligned, you should change the CSS file and make the "margin-left" and "margin-right" from the container set to "auto". I'm not sure if everything will comply since some are set to a absolute position.

Good luck!
Joeri - question.   2010-11-07 15:43:57
Gravatar image hey, i downloaded the file because its really cool but i want to center the iphone to the center on the screen but dont rlly know how to do it =/
can you help me?
i tried to put in margin-left:auto and margin-right:auto; but it doesn't work

thanks anyway
andrew   2011-09-19 04:16:41
Gravatar image set "position:absolute;"

it won't read the margins otherwise ... but seeing as it's been a year, you probably won't see this.
dlv - dlv   2009-01-22 18:35:35
Gravatar image really nice, good implemented and ispiring
thanks for share this work in this tutorial
pearible - pearible actual   2009-02-03 20:49:29
Gravatar image Slider doesn't appear to work in IE7 today
Cosmin - Not working in IE7   2009-02-12 10:35:22
Gravatar image Unfortunately, it's not working under IE7 :(
Marko - load   2009-02-22 22:14:08
Gravatar image Is possible to load swf in side of iphone (screen) after unlock?
vaQ - IE7   2009-03-03 02:37:43
Gravatar image Hello everybody,

is there any idea how to fix it in ie7 ... still not working :(
cihat - sohbet   2009-03-04 20:39:40
Gravatar image Hi good work thanks sohbet
kev - iphone punker   2009-03-09 10:34:42
Gravatar image can you link the slider to a html website as a index page and how do you do it
kind lost :s
Muhal   2009-07-09 15:20:15
Gravatar image Got the same problem :( When i put the window.location part under the line where it was originally (-> line #40 i think), it redirects, but without waiting for fadeout effect done...
Akki   2011-11-11 11:59:45
Gravatar image ****add this in tag of the html page****









****Add this to your html pages' tag****



Welcome to Our Site


Slide to Enter Site















****style.css will contain following****

body { }
a { outline:none; }
p { padding:0; margin:0; }
img { border:0; }
#bg{background:#000000; width:300px; height:125px; margin:50px 0px 0px 50px; border-radius:10px; padding-top:5px;}
#iphone-scrollcontainer { height:50px; width:275px; position:absolute; background-color:#666666; margin:0px 0px 0px 10px; border-radius:10px; border:1px solid #fb0000; }

iphone-inside { overflow: hidden; height:100%; width:100%; background-image:url(../images/background.png); }
unlock-top { position: relative; height:95px; background-image:url(../images/lock-top.png); }
unlock-spacer { height:272px; /* Total height = 461px - 95px (top) - 94px (bottom) */ }
#unlock-bottom { position: relative; height:94px; background-image:url(../images/lock-bottom.png) no-repeat; }
slide-to-unlock { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height:94px; background-image:url(../images/slide-to-unlock.gif); }
#unlock-slider-wrapper { padding-left:0px; padding-top:0px; }
#unlock-slider { width:277px; height:50px; }
#unlock-handle{ position: absolute; z-index: 10; height: 50px; width: 72px; top: 0px; left: 0px; background-image: url(../images/lock-slider.png); }

time { text-align:center; color:#FFFFFF; font-family:Georgia, Times, serif; font-size:45px; padding:6px 0; }
date { text-align:center; color:#FFFFFF; font-family:Georgia, Times, serif; font-size:12px; }

/* Used by the jQuery slider */
ui-slider { position: relative; background-repeat: no-repeat; background-position: center center; }
.tem{color:#FFFFFF; font-size:14px; text-align:center;}

****-----------------****

copy the js and images folder to your root folder.

To add an html file to open on sliding...you have to add the html file name in iphone-unlock.js
:cheer: B)
*******************
Check my site...www.hyperlinksinfotech.com
Almost - But not quite   2009-05-18 20:19:25
Gravatar image Great looking script. Doesn't work with latest versions of jQuery and UI though :(
Don Cheng - Not workin on the old IE6 too   2009-07-09 21:36:05
Gravatar image Cool implementation! But it is not working on the old IE6 too........oh and one thing..........on FireFox once I slided the unlock button to the right, the rainbow screen disappeared for about half a second, then the rainbow screen returned after I saw the black background under it for that amount of time.........how to make the rainbow screen disappear forever once I unlocked the iphone please?
Don Cheng - A fix for IE!   2009-07-15 12:58:44
Gravatar image :!: A fix for IE! In style.css, change z-index: 1; to z-index: 0; for the DIV #slide-to-unlock...........yet I don't know why the DIV #unlock-handle with z-index: 10; will be overlapped by the DIV #slide-to-unlock...................... :!:
sohbet - sohbet   2009-08-13 16:48:21
Gravatar image Subject to very good, but thank you very much for help
Sohpet - sohpet   2009-08-18 03:10:35
Gravatar image Cool implementation! But it is not working on the old IE6 too........oh and one thing..........on FireFox once I slided the unlock button to the right, the rainbow screen disappeared for about half a second, then the rainbow screen returned after I saw the black background under it for that amount of time.........how to make the rainbow screen disappear forever once I unlocked the iphone please?
?? this
Sohbet - sohbet   2009-08-18 03:11:31
Gravatar image thank you my admin
Fabian - Text Effect   2009-08-25 19:27:39
Gravatar image Hello Marco,

Well done. I just have one question.
I can't find in the source, where you created the effect over the text ("slide to unlock";), that glows.

I was thinking, making a transparent png of gif that you can place on top (because you can't change the opacity in a certain part of a div, right?), but how did you do it (or did I miss something)?

Greetings, Fabian
dotBrilliance web development
Marco - Thanks!   2009-08-25 19:30:53
Gravatar image First off: Thanks for the comment Fabian. I translated it into English so all the other readers can understand what you're saying.

Anyway, the text is just an animated GIF created with Photoshop - I don't think there is any other way on how you can create such an effect.

If you download the source, you'll be able to find the image somewhere there.

Good luck!
virdfel - WAW!   2009-08-25 16:19:15
Gravatar image nice idea!!, very cool
Kyle - Changing slider arrow   2009-09-04 07:18:30
Gravatar image Does anyone know anything about customizing the slider arrow? I had a friend that did it but I can't seem to get in touch with them or figure it out on my own. Thanks in advance for any support/replies!
gay chat - gay sohbet   2009-09-19 04:05:00
Gravatar image rainbow screen returned after I saw the black background under it for that amount of time.........how to make the rainbow screen disappear forever once I unlocked the iphone please
Cene Estetigi - Cene Estetik   2009-10-08 17:05:11
Gravatar image Nice Doc.... thanks... admin
lez sohbet - lez sohbet   2009-10-09 21:02:49
Gravatar image Thnks
PA - Does't work on the real iphone itsel   2009-10-23 11:49:31
Gravatar image This demo doesn't work on a real iphone. You can't really slide : you will only get a click, and the carret will not follow your finger...
Stranger   2009-11-03 12:29:04
Gravatar image Brilliant!!!
I have been looking for this for ages! :cheer:
Kartik - TheKGuy   2009-12-14 08:39:49
Gravatar image Thanks alot for this i've been searching a lot this thing rox!!
Antoine Guédès - Freak!   2009-12-21 15:59:11
Gravatar image Man, it's a crazy tutorial!
Thank you for it, I have a big idea to do. Thank you!
Anonymous - web   2009-12-23 07:20:10
Gravatar image Thank you for it, I have a big idea to do. Thank you!
seutje - ew   2009-12-23 15:48:35
Gravatar image this made me throw up my lunch :(

not only is it utterly useless in a practical sense, but the source is downright nasty, if ur gonna apply dodgy positioning on load, at least try to get it right and don't just slap some position:relative; here and some position:absolute; there...

seriously, this post made give up advocating best practice

Keep up spitting out crap, all hope for a clean future of the web is lost anyway
Jeff   2010-05-04 06:00:52
Gravatar image Wooow there. How about you provide some ways to make the code better instead of being mean? If you think it sucks, that's fine, but at least provide positive feedback and ways he could correct what is wrong.
mani2umca - Thanks!   2010-01-07 07:51:40
Gravatar image Great and thanks a lot for the share!!! B)
webb - Re: The iPhone unlock screen   2010-01-16 05:08:36
Gravatar image This has given me an idea on how people will enter my site.
RMC   2010-02-15 23:55:05
Gravatar image Hello,

I am creating a website in iWeb, and was wondering how I put the iphone in iWeb. Could you please tell me, or just send me the iPhone where I can just put it in. I am using the slider as a privacy terms accepter, and thought that it would be cool to use the iPhone slider. Thanks!
jeyasankar - iphone iframe div   2010-03-05 07:40:39
Gravatar image hi
i have create iphone web application use in iframe and div but not working in iphone simlater so plz help me ,,,,, and how use in frame set also

thank's jeyasankar
jeyasankar - iphone   2010-03-05 07:42:36
Gravatar image if clear information plz send mail ajeyasankar@gmail.com
thank's
jeyasankar
Sohbet odalar - Chat rooms   2010-03-14 18:16:09
Gravatar image if clear information plz send mail ajeyasankar@gmail.com
thank's
jeyasankar
Ron - iphone   2010-03-23 02:55:30
Gravatar image This is pretty awesome...I hate to raise the bar with this question, but have you or do you know someone who has done the screen the follows AFTER the unlock?

Basically I'm looking for a set of icons that can be scrolled much like on the iphone. In other words what you see AFTER it's unlocked.

Thanks.
Marco - It's here already!   2010-03-24 19:29:13
Gravatar image Hi Ron! I already created the "Springboard using jQuery and CSS" ;) .
Akki   2011-11-11 12:05:39
Gravatar image Check my website

www.hyperlinksinfotech.com
sohbet odalar - Sohbet, Sohbet odalar   2010-03-26 20:13:09
Gravatar image This has given me an idea on how people will enter my site
blablaman - iphone unlockscreen for iphone   2010-03-31 09:35:21
Gravatar image Can you make it so that it also works at the iphone. I want this add to my mobile website for the iphone. But the slider isnt working on the iphone.
konyasohbet - konya chat   2010-04-15 13:42:56
Gravatar image thanks very good a lot to for share
Taufiq - can't work on jquery 1.4   2010-04-26 14:29:54
Gravatar image Hey, this is just Nice tutorial, but when i try with jquery 1.4 it can't work!
any advice, thanks anyway :D
tristar - include iphone to wordpress   2010-04-27 12:59:53
Gravatar image hy, i tried to include this iphone to wordpress.
first time i tried directly, like in your example :
, but it just don't work.
second time, i replace the wp included jquery and activate it with the following code :
, inserted in header.php file in the section before wp_head function, again it don't work.

How can i include this great gadget to my web site ?
can someone give me an advice ?

Best regards,
Tristar
tristar - Tristar   2010-04-27 13:02:40
Gravatar image Sorry i posted an html code, please delete first post.

hy, i tried to include this iphone to wordpress.
first time i tried directly, like in your example :
script type="text/javascript" src="js/jquery-1.2.6.min.js" , but it just don't work.
second time, i replace the wp included jquery and activate it with the following code :
php wp_enqueue_script("jquery";); , inserted in header.php file in the head section before wp_head function, again it don't work.

How can i include this great gadget to my web site ?
can someone give me an advice ?

Best regards,
Tristar
dev82 - great tutorial!   2010-06-03 23:49:45
Gravatar image Hello Marco,

great tutorial you have done.

but how can i use the code:

Code:
$("#iphone-inside";).fadeOut("normal", function(){window.location=


to display my another page directly in the iPhone? with any iFrame?

thanks
Dev82
sohbet odalari - sohbet odalar   2010-06-09 09:32:26
Gravatar image thanks by admin good blog
Rubs - random Background   2010-06-13 17:17:13
Gravatar image Hi there,

Using this framework for my web development.

first of all congratulations, it is wonderful

Could u please advice on how to put random background pages ? so that every time it is loaded there´s anew background image ? that would be nice.

Thanks mate

Keep it up

Rubs
rottweiler - good information   2010-07-17 01:54:03
Gravatar image thank you very much , thanks you for sharing have a nice day
Bryan - Updated   2010-07-20 02:21:34
Gravatar image If anyone is interested, I updated this to the latest version of jQuery and jQuery UI, as of writing.

http://random.vuii.co.uk/iphone_lockscreen/

I also tweaked the CSS a little and the unlock action (it now resets instead of reloading the page).

Files in a zip here: http://random.vuii.co.uk/iphone_lockscreen/iphone_lockscreen.zip
slick rick - nice   2010-07-20 19:06:09
Gravatar image Just looked for this and found the update. you rock!
Javielos   2010-07-25 11:51:11
Gravatar image Hello! Thanks you very much for this.

I have an Apple Blog, and this "iPhone" is perfect to insert in my blog.

How can I insert in my blog? Thanks you!
Javielos   2010-07-25 11:53:00
Gravatar image Hi! Thanks you very much for this!

I have an Apple Blog: http://www.javielos.com

This "iPhone" is perfect to insert in my blog.

How I can to insert in my blog?

Thanks you very much!
Sohbet odalari - Sohbet, Sohbet odalar   2010-07-26 05:34:00
Gravatar image Hi there,

Using this framework for my web development.

first of all congratulations, it is wonderful

Could u please advice on how to put random background pages ? so that every time it is loaded there
osmaniye emlak - osmaniye emlak, emlak   2010-07-28 13:13:58
Gravatar image thanks by admin perfect to blog
Lez sohbet - lez chat   2010-08-18 15:02:05
Gravatar image thanks you admin
gay sohbet - gay chat   2010-08-18 15:03:35
Gravatar image ellerine sagl
vainfotech - Website design   2010-09-07 11:56:52
Gravatar image It is very Useful for me and i am also web developer in ahmedabad.
Query - question   2010-10-02 16:33:17
Gravatar image Hi there, I'm interested in this code for my website. Is there a way to easily centralise the iPhone screen? Thanks;
Fussbodenheizung - Fussbodenheizung   2010-11-19 22:26:16
Gravatar image Thanks for the useful information. i was searching for those infos since a while in the net, great !
ap3 - modify the text into the unlock bar.   2010-11-24 15:54:36
Gravatar image Hello, how can i modify the text into the unlock bar. :?:
Very good work !
Thank you in advance.
tuz - tuz, tuz   2010-12-01 16:25:02
Gravatar image Thanks alot for this i've been searching a lot this thing rox..
mirc - mirc, mirc indir   2010-12-02 23:32:43
Gravatar image thank so mach.
sohbet - sohbet   2011-01-12 19:37:56
Gravatar image hello perfect blog.thank you information.
jumarie - asking   2011-01-25 04:09:01
Gravatar image can you send me the code for the sliding image

where i can slide an image and go to the next link

im studying html..please help..

tnx...

j_mocon@yahoo.com...
almanya chat - almanya chat, almanya sohbet   2011-02-28 14:32:47
Gravatar image good blog thanks admin almanya chat visited web site no delete post
amy - cheap clothes online   2011-03-14 03:22:36
Gravatar image I am just a little surprising for your mind.
Roy - Business Ipad   2011-04-14 05:11:25
Gravatar image :cheer: I got your code to work today on my business iPad! seriously go to my link:
http://www.thebusinessipad.com/

now your script has been ipadified!
dimios - work with jquery 1.5   2011-04-17 02:59:45
Gravatar image hello, I really like your script and the hole idea. So I took your code and changed it a bit in order to use iphone4 and some extra feauters. But in my wbesite I am using already jquery 1.5 and I want to make the iphone to work with this versio of jquery. I know that Roy-business iPad uses jquery with this script, I am wonderning if anyone can help me with that?

cheers
Baskaran - Domain Registrartion   2011-05-06 06:10:47
Gravatar image very useful post, thanks for sharing with us.
Sylvia - Can't Redirect   2011-05-11 18:53:17
Gravatar image How can you redirect to another page instead of in the same page?
facebook - facebook, face   2011-05-13 08:56:51
Gravatar image Thanks you admin wordpress for themes.Very beatiful
facebook - facebook   2011-05-13 08:57:33
Gravatar image Thanks you admin wordpress for themes.Very beatiful
Sohbet - Sohbet   2011-05-14 19:25:54
Gravatar image great post. Thanks to all the
jackbang - The "slide to unlock" slippery motionless   2011-05-21 10:00:42
Gravatar image Hello,Marco
jackbang - the"slide to unlock"can't slide   2011-05-21 10:05:11
Gravatar image Hello,Marco,
Well done. I just have one question.In local debugging normal, uploaded to space then can't slider move,
please help me!thank you.

demo url:http://bang5945.nt67.idcwind.net/zouxikou/iphone.html
abhishek - Federal Loans   2011-05-22 14:24:08
Gravatar image Hi, I really need to know how can I apply this to my website. So that at the end of the slide, a custom webpage can be opened./ pops up!
Thanks
yunenmei - cheap gucci shoes   2011-06-25 02:06:47
Gravatar image I thank you for this article.
yunenmei - gucci bags   2011-06-25 02:08:20
Gravatar image Can you provide more content like articles, I would have been very concerned about your information,

thank you!
yunenmei - This is really nice information.   2011-06-25 02:16:33
Gravatar image This is really nice information.
Yosun - Yosun   2011-07-03 09:22:11
Gravatar image I thank you for this article.
fit flop - fit flop   2011-07-09 03:53:11
Gravatar image fit flop
canl - sohbet siteleri   2011-07-13 16:56:10
Gravatar image thank you Admins
Chetena - IE-9 Issue   2011-07-21 09:44:12
Gravatar image Its not working in ie 9?
Any idea please let me know asap.

I am using it for one of my client's website.
Chetaru: Web Design Company In   2011-07-21 14:33:22
Gravatar image For IE 9 Related use this code just below



Note: As it will render IE9 to open in IE8 compatibility mode
hirmani80 - Web Hosting Pad Review   2011-08-02 09:00:04
Gravatar image This is providing the great posts are visible in this blog and the nice impressing with this website. This is very much satisfied by the info in this blog and I hope you this website are very popular for providing the great info in this blog. I am very much satisfied by the info in this blog. Thanks a lot for visiting the great website and helpful info in this blog.
sohbet odalar - sohbet odalar   2011-08-11 14:05:53
Gravatar image I thank you for this article
liberty - another reply   2011-08-15 23:40:06
Gravatar image fund liberty reserve in nigeria
If you want some genuine insight to our academic gurus, and their capability, you need to go to Thomas Sowell
promosyon - Promosyon Ürünleri   2011-08-27 13:03:25
Gravatar image Thank you very much. Great sharing.
omegle - omegle   2011-08-27 14:14:34
Gravatar image nice idea!!, very cool
omegle - re: omegle   2011-08-27 14:15:32
Gravatar image
omegle wrote:
nice idea!!, very cool


??
Nitish Raj   2011-08-29 05:43:05
Gravatar image how do i redirect it to a page when it is slided
canl - canl   2011-09-15 09:55:00
Gravatar image I thank you for this article..
PhotoshopWarrior - Cool   2011-10-05 16:08:36
Gravatar image That's a great technique to show the iPhone
omegle - omegle   2011-10-05 18:45:42
Gravatar image I thank you for this article..
gürcan - flash bellek   2011-10-17 12:19:30
Gravatar image Great info. Thank you very much.
pod   2011-11-02 11:10:49
Gravatar image hello
any chance to have a new version ( compatible with all browser ) ?

thank you
Gregor Adams - -webkit-OS a Webapp Framework   2011-11-06 14:18:38
Gravatar image Hi..
I have been inspired by some of your ideas.
Your iPhone examples are really nice.
I am currently writing a webapp framework similar to your examples so maybe you are interested.
I used a few ideas from your lockscreen on my project.
Since it's optimized for the iPhone it has full touch support.

Here's a link to my current dev branch:

http://wappkit.pixelass.com/dev_1_1_1/

I added a little CSS styling for Desktop Browsers.

it works on:
iPhone 4 and 4s with iOS5 (as Homescreen Webapp)
Safari5+
Chrome


I hope you like it..
turkey - turkey   2011-12-07 18:27:41
Gravatar image hey thanks very good can
turkey - turkey   2011-12-07 18:28:55
Gravatar image HEY That's a great technique to show the iPhone
Selva Prakash - Iphone unlock   2011-12-13 09:40:58
Gravatar image GREAT :0
This iphone unlock theme is awesome. I would like to put this theme in my website which i have not yet created.
Can i put this theme in my website.
Regards,
Selva Prakash
jonas - Can i change the width of unlock-slider & unlock-h   2011-12-18 19:52:44
Gravatar image Im trying to resize the iphone i used a smaller image so i want the unlock slider to be smaller
#unlock-slider { width:165px; height:50px; }
#unlock-handle{ position: absolute; z-index: 10; height: 31px; width: 45px; top: 0px; left: 0px; background-image: url(../images/lock-slider.png); }

but it the slider is not working. i checked and it is because of the width that i changed on both divs. this one is the original:
#unlock-slider { width:277px; height:50px; }
#unlock-handle{ position: absolute; z-index: 10; height: 51px; width: 72px; top: 0px; left: 0px; background-image: url(../images/lock-slider.png); }


so how can i make it work?? anyone? i dont know if iexplained myself
jonas - Can i change the width of unlock-slider & unlock-h   2011-12-18 20:04:10
Gravatar image m trying to resize the iphone i used a smaller image so i want the unlock slider to be smaller
#unlock-slider { width:165px; height:50px; }
#unlock-handle{ position: absolute; z-index: 10; height: 31px; width: 45px; top: 0px; left: 0px; background-image: url(../images/lock-slider.png); }

but it the slider is not working. i checked and it is because of the width that i changed on both divs. this one is the original:
#unlock-slider { width:277px; height:50px; }
#unlock-handle{ position: absolute; z-index: 10; height: 51px; width: 72px; top: 0px; left: 0px; background-image: url(../images/lock-slider.png); }


so how can i make it work?? anyone? i dont know if iexplained myself
Gregor Adams   2011-12-18 20:18:24
Gravatar image This example uses an old version of jQueryUI. I have rewritten and improved this example in a project and will post about it on my blog once I extracted the code.

for your problem... I guess you messed something up. it should be pretty easy to modify the CSS.
I remember having problems with this example, so I wrote my own...
omegle - hi.i   2012-01-24 19:54:21
Gravatar image HEY That's a great technique to show the iPhone
Filou - Open in a new tab   2012-01-27 13:20:43
Gravatar image Hey first of all - VERY NICE WORK.

Since Iam pretty new to Jquery, I have a problem with the fadeOut and the window.location - cause I prefer the opening in a new Tab. but it won't work with window.open.
With the .click instead of fadeOut I get it to work but you have to click -
Thanx for any help
MotheuS - Sohbet Odalari   2012-02-03 17:46:21
Gravatar image thanks you adminis.
MotheuS - Sohbet Odalar   2012-02-03 17:47:02
Gravatar image Kaliteli sohbet siteleri detaylar
iphoneunlocking   2012-02-05 13:58:01
Gravatar image Hey ! thats great techniques
omegle - omegle   2012-02-13 19:46:38
Gravatar image Does a telephone have a photocamera? And what strange, simply a lot of corps of original. Cool
Deniz - Thanks!   2012-02-14 16:43:59
Gravatar image Special thanks for your sharing! :D I really should learn jq !
1h8heet - HELP!!!!!!!!!!!   2012-02-17 22:17:55
Gravatar image I can't get this thing to work! Can someone send me step by step instructions to my email (admin@1h8heet.net16.net), Please! When I did it, it only showed the time and the date.
Paid Directory Links - it's working   2012-03-27 10:28:09
Gravatar image really it's work

We must try onces
Paid Directory Links   2012-03-27 10:28:59
Gravatar image really it's work

We must try onces
omegle - omegle   2012-04-25 14:30:24
Gravatar image Thank you very much. Great sharing.
Ace   2012-07-15 12:14:01
Gravatar image Thanks for the great share :)

Just one thing though - is there a way to get it to work without necessarily having to use jQuery 1.2.6. but e.g. with jQuery 1.7.2. in stead?

The thing is that I'm using jQuery 1.7.2. for the rest of my page, but when I use jQuery 1.2.6. different things stop working, and when I use jQuery 1.7.2. your script won't work properly :(

I've tried giving no.Conflict() a try, but can't figure out how to get it work :S

Any help with this will be greatly appreciated.
Shadow   2012-08-20 01:12:11
Gravatar image Yeah can you please update this script for use with latest jQuery and stuff. Doing so would be great as it could greatly improve the Unlock Screen as well as improve compatibility with newer add ons we use.
einar - question plz   2012-09-05 08:12:08
Gravatar image hey! awesome tutorial! thank you! it really helped me
but I'm a bit stuck because what if I want it to go to another page like in real iphone when you unlock it than it goes to the main screen with all the apps.

where in the code can I add the reference to another page once I've unlocked it?

I hope I some how made it clear....peace and love!
Einar
Rahul - Not working in IE 9   2012-09-20 17:41:40
Gravatar image slider unlock doesn't work in IE9 ? aNY IDEAS?
Alex - iPhone 5 Lockscreen   2012-10-20 12:29:02
Gravatar image Hello,

Thanks for the source I've made some changes for the iPhone 5 lockscreen and put widgets in there real cool!!!!
awfice   2012-11-11 19:35:35
Gravatar image super ! et bon travaille !! merci car je rechercher ça depuis longtemps ! et vraiment bravo !!
j'ai juste une question , comment l'insérer dans iweb mac os x

et encore merci !!
awfice   2012-11-11 19:38:35
Gravatar image traduction :

Great! Worked and good! Thank you for car I to look for Search(Research) that For a long time since! Really bravo and!
I have in just June questions, comments the inserer IN iweb mac bone x and thank you again!
aaaa   2012-11-23 14:09:13
Gravatar image If you want to unlock your iPhone Visit: www.imei.info
Here you can unlock your iPhone and also check unlock status for FREE
omegle - omegle   2012-12-16 22:01:20
Gravatar image camsohbet site is also a very nice alternative to Omegle
bigz   2013-03-06 09:08:08
Gravatar image :evil: FUCK YOU!!!!
Read more...
Name:
Email:
  Gravatar enabled.
Website:
Title:
UBBCode:
[b] [i] [u] [url] [quote] [code] [img] 
 
 
:angry::0:confused::cheer:B):evil::silly::dry::lol::kiss::D:pinch:
:(:shock::X:side::):P:unsure::woohoo::huh::whistle:;):s
:!::?::idea::arrow:
 
Security Image
Please input the anti-spam code that you can read in the image.
Unsubscribe from e-mail notifications.
 
< Prev   Next >
Subscribe

Subscribe to Marcofolio