Advertisement
nflcs

Социални мрежи за вашият сайт

Dec 30th, 2022
30
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | Source Code | 0 0
  1. <div class="social_icons">
  2. <a href="Линка ви към Facebook" target="_blank"><img src="https://i.imgur.com/34vkdFX.png"></a><br>
  3. <a href="Линка ви към YouTube" target="_blank"><img src="https://i.imgur.com/5zurOnH.png"></a><br>
  4. <a href="Линка ви към SteamGrupata" target="_blank"><img src="https://i.imgur.com/Ojh7m9w.png"></a><br>
  5. <a href="Discord-a"><img src="https://i.imgur.com/BaCxVax.png"></a><br>
  6. <a href="Skype-a" target="_blank"><img src="https://i.imgur.com/iWfC6nN.png"></a>
  7. </div>
Advertisement
Comments
  • nflcs
    2 years
    # text 0.99 KB | 0 0
    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. }
Add Comment
Please, Sign In to add comment
Advertisement