Advertisement
Guest User

Untitled

a guest
Oct 21st, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <head>
  2. <title>Leen de Broekert</title>
  3. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  4. <meta name="description" content="" />
  5. <meta name="keywords" content="" />
  6. <link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600" rel="stylesheet" type="text/css" />
  7. <!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
  8. <script src="js/jquery.min.js"></script>
  9. <script src="js/skel.min.js"></script>
  10. <script src="js/skel-panels.min.js"></script>
  11. <script src="js/init.js"></script>
  12.  
  13. <link rel="stylesheet" href="colorbox.css" />
  14.  
  15. <script src="jquery.colorbox.js"></script>
  16. <script>
  17. $(document).ready(function(){
  18. $(".inline").colorbox({inline:true, width:"90%"});
  19. $(".callbacks").colorbox({
  20. onOpen:function(){ alert('onOpen: colorbox is about to open'); },
  21. onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
  22. onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
  23. onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
  24. onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
  25. });
  26.  
  27. $('.non-retina').colorbox({rel:'group5', transition:'none'})
  28. $('.retina').colorbox({rel:'group5', transition:'none', retinaImage:true, retinaUrl:true});
  29.  
  30. //Example of preserving a JavaScript event for inline calls.
  31. $("#click").click(function(){
  32. $('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
  33. return false;
  34. });
  35. });
  36. </script>
  37.  
  38. <noscript>
  39. <link rel="stylesheet" href="css/skel-noscript.css" />
  40. <link rel="stylesheet" href="css/style.css" />
  41. <link rel="stylesheet" href="css/style-wide.css" />
  42. </noscript>
  43. <!--[if lte IE 9]><link rel="stylesheet" href="css/ie9.css" /><![endif]-->
  44. <!--[if lte IE 8]><link rel="stylesheet" href="css/ie8.css" /><![endif]-->
  45. </head>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement