Advertisement
sathana

jquery_test.js

Apr 4th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. var elementsArrays = document.getElementsByTagName("h2");
  2. var elements = elementsArrays[0];
  3. $("#title2-button").click(function() {
  4. if(elements.style.color != "yellow"){
  5. $("#title2").css("color", "yellow");
  6. } else{
  7. $("#title2").css("color", "black");
  8. }
  9. });
  10.  
  11. $("title3-button").click(function(){
  12. $("#space-sloth").animate({
  13. down: '600px',
  14. opacity: '0.5',
  15. height: '150px',
  16. width: '150px'
  17. });
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement