Advertisement
xariaaaa

[SCRIPT] Fly In

Jul 11th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  2.  
  3. <script language="javascript">
  4. $(document).ready(function() {
  5. $('a#clickbutton').click(function() {
  6. $('.t',this).toggle();
  7. });
  8.  
  9. $("#about").css({"left": "120%"})
  10. $("#clickbutton").toggle(
  11. function () {
  12. $("#about").animate({"left": "50%"}, "slow");
  13. },
  14. function () {
  15. $("#about").animate({"left": "120%"}, "slow");
  16. });
  17. });
  18. </script>
  19.  
  20. #about {
  21. position: fixed;
  22. top:0;
  23. width:400px;
  24. margin-left:-220px;
  25. font:10px ‘Arial’;
  26. padding: 20px;
  27. background:white;
  28. color:black;
  29. left:120%;
  30. }
  31.  
  32. <a id="clickbutton" class="t" style="cursor:pointer;"><span class="t">click for more</span><span class="t" style="display:none">click for less</span></a>
  33.  
  34. <div id="about">
  35. here is your content edit it how you like
  36. <img src="http://i.dailymail.co.uk/i/pix/2013/12/12/article-0-1A10873500000578-653_306x423.jpg">
  37. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement