Advertisement
Guest User

Untitled

a guest
Dec 26th, 2012
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. @media only screen and (device-width: 768px) {
  2. /* For general iPad layouts */
  3. }
  4.  
  5. @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  6. /* For portrait layouts only */
  7. }
  8.  
  9. @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
  10. /* For landscape layouts only */
  11. }
  12.  
  13. <!--Target iPad-->
  14. <link href="ipad.css" rel="stylesheet" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px)" type="text/css" />
  15. <!--Target iPhone 3GS> -->
  16. <link href="iphone.css" rel="stylesheet" media="only screen and (max-device-width: 480px)" type="text/css" />
  17. <!--Target iPhone 4-->
  18. <link href="retnia.css" rel="stylesheet" media="only screen and (-webkit-min-device-pixel-ratio: 2) and (max-device-width: 480px)" type="text/css" />
  19.  
  20. if(navigator.platform == 'iPad' || navigator.platform == 'iPhone' || navigator.platform == 'iPod')
  21. {
  22. $(window).scroll(function() {
  23. $('header').css('top', $(this).scrollTop());
  24. });
  25.  
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement