cid1013 html css 制作动画分享按钮
Warning: Undefined property: stdClass::$maxbutton id="5" in /www/wwwroot/code.5g-o.com/wp-content/plugins/kama-clic-counter/class.KCCounter.php on line 733
index.html
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css"> <body> <div class="social-buttons"> <a href="#"><i class="fab fa-facebook-f"></i></a> <a href="#"><i class="fab fa-twitter"></i></a> <a href="#"><i class="fab fa-instagram"></i></a> <a href="#"><i class="fab fa-youtube"></i></a> <a href="#"><i class="fab fa-linkedin-in"></i></a> </div> </body> </html>
style.css
body{ margin: 0; padding: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background: #f1f1f1; } .social-buttons a{ display: inline-flex; text-decoration: none; font-size: 18px; width: 60px; height: 60px; color: #fff; justify-content: center; align-items: center; position: relative; margin: 0 8px; } .social-buttons a::before{ content: ""; position: absolute; width: 60px; height: 60px; background: linear-gradient(45deg,#22a6b3,#30336b); border-radius: 50%; z-index: -1; transition: 0.3s ease-in; } .social-buttons a:hover::before{ transform: scale(0); } .social-buttons a i{ transition: 0.3s ease-in; } .social-buttons a:hover i{ background: linear-gradient(45deg,#22a6b3,#30336b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transform: scale(2.2); }
一键获取本网站前端代码设计的所有源码
获取资源构建和完善自己的源码库
源码可以在本地直接演示
同时研究和体验 如何将一些具体的想法的实现过程
源码可以直接嫁接到自己的网站里复用
稍作修改成为自己的作品