Advertisement
nflcs
Dec 30th, 2022
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. След като тобавихте това в индекса не забравяйте и да добавите този код на custom.css попринцип който ще да бъде
  2.  
  3. .social_icons{
  4. left: 0; margin: 16% auto auto 10px; position: fixed;
  5. }
  6.  
  7. .social_icons img{
  8. opacity: 0.5;
  9. filter: alpha(opacity=50);
  10. -webkit-transition: all 1s ease-in-out;
  11. -webkit-transform: rotate(-360deg);
  12. -moz-transition: all 1s ease-in-out;
  13. -o-transition: all 1s ease-in-out;
  14. -ms-transition: all 1s ease-in-out;
  15. }
  16.  
  17. .social_icons img:hover{
  18. padding: 7px;
  19. opacity: 100;
  20. filter: alpha(opacity=40);
  21. -moz-transition: all 0.5s ease-out;
  22. -o-transition: all 0.5s ease-out;
  23. -webkit-transition: all 05s2s ease-out;
  24. -ms-transition: all 0.5s ease-out;
  25. transition: all 0.5s ease-out;
  26. -webkit-transform: rotate(360deg);
  27. -moz-transform: rotate(360deg);
  28. -o-transform: rotate(360deg);
  29. -ms-transform: rotate(360deg);
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement