Yukki 27 Posted August 20, 2018 Posted August 20, 2018 Make your logo move side to side when mouse over, its actually buzzz effect Goto Personalization -> Styles -> Your Style -> Click on </>, then click Templates and in the search bar, search for the logo. Change: Replace this line below <a href='{setting="base_url"}' id='elLogo' accesskey='1'><img src="{$logo}" alt='{setting="board_name" escape="true"}'></a> With below line <a href='{setting="base_url"}' id='elLogo' accesskey='1'><img src="{$logo}" alt='{setting="board_name" escape="true"}' class="brand buzz-out" ></a> Now goto your css tab > open the custom.css and insert the below line of code .buzz{ display:inline-block; -webkit-transform:translateZ(0); transform:translateZ(0); box-shadow:0 0 1px rgba(0,0,0,0) } .buzz:hover,.buzz:focus,.buzz:active{ -webkit-animation-name:buzz; animation-name:buzz; -webkit-animation-duration:0.15s; animation-duration:0.15s; -webkit-animation-timing-function:linear; animation-timing-function:linear; -webkit-animation-iteration-count:infinite; animation-iteration-count:infinite } @-webkit-keyframes buzz-out{ 10%{ -webkit-transform:translateX(3px) rotate(2deg); transform:translateX(3px) rotate(2deg) } 20%{ -webkit-transform:translateX(-3px) rotate(-2deg); transform:translateX(-3px) rotate(-2deg) } 30%{ -webkit-transform:translateX(3px) rotate(2deg); transform:translateX(3px) rotate(2deg) } 40%{ -webkit-transform:translateX(-3px) rotate(-2deg); transform:translateX(-3px) rotate(-2deg) } 50%{ -webkit-transform:translateX(2px) rotate(1deg); transform:translateX(2px) rotate(1deg) } 60%{ -webkit-transform:translateX(-2px) rotate(-1deg); transform:translateX(-2px) rotate(-1deg) } 70%{ -webkit-transform:translateX(2px) rotate(1deg); transform:translateX(2px) rotate(1deg) } 80%{ -webkit-transform:translateX(-2px) rotate(-1deg); transform:translateX(-2px) rotate(-1deg) } 90%{ -webkit-transform:translateX(1px) rotate(0); transform:translateX(1px) rotate(0) } 100%{ -webkit-transform:translateX(-1px) rotate(0); transform:translateX(-1px) rotate(0) } } @keyframes buzz-out{ 10%{ -webkit-transform:translateX(3px) rotate(2deg); transform:translateX(3px) rotate(2deg) } 20%{ -webkit-transform:translateX(-3px) rotate(-2deg); transform:translateX(-3px) rotate(-2deg) } 30%{ -webkit-transform:translateX(3px) rotate(2deg); transform:translateX(3px) rotate(2deg) } 40%{ -webkit-transform:translateX(-3px) rotate(-2deg); transform:translateX(-3px) rotate(-2deg) } 50%{ -webkit-transform:translateX(2px) rotate(1deg); transform:translateX(2px) rotate(1deg) } 60%{ -webkit-transform:translateX(-2px) rotate(-1deg); transform:translateX(-2px) rotate(-1deg) } 70%{ -webkit-transform:translateX(2px) rotate(1deg); transform:translateX(2px) rotate(1deg) } 80%{ -webkit-transform:translateX(-2px) rotate(-1deg); transform:translateX(-2px) rotate(-1deg) } 90%{ -webkit-transform:translateX(1px) rotate(0); transform:translateX(1px) rotate(0) } 100%{ -webkit-transform:translateX(-1px) rotate(0); transform:translateX(-1px) rotate(0) } } .buzz-out{ display:inline-block; -webkit-transform:translateZ(0); transform:translateZ(0); box-shadow:0 0 1px rgba(0,0,0,0) } .buzz-out:hover,.buzz-out:focus,.buzz-out:active{ -webkit-animation-name:buzz-out; animation-name:buzz-out; -webkit-animation-duration:0.75s; animation-duration:0.75s; -webkit-animation-timing-function:linear; animation-timing-function:linear; -webkit-animation-iteration-count:1; animation-iteration-count:1 } You know what we just did? we have just add the class class="brand buzz-out" to the logo line we edited and then we added the css for animation Enjoy the tuto! 1 Quote
Waqas Dar 7,036 Posted August 20, 2018 Posted August 20, 2018 this is nice .. i will use this code when i get free time will update this code in css.. 0 Quote ⚡ Quick Access & Member Actions 📝 Create Account / Register 🔐 Member Login 🔍 Search Everything 🔥 Activity Feed (Live Updates) 🏠 Go to Portal Home 📩 Contact Admin Support ❓ Help & Support Center 🏆 Community Leaderboard 👨💼 Forum Staff Team 📜 Terms & Rules 🔒 Privacy Policy 📢 Forum Announcements
Yukki 27 Posted August 20, 2018 Author Posted August 20, 2018 1 minute ago, waqas dar said: this is nice .. i will use this code when i get free time will update this code in css.. yeah its and i have tested all my tutorials by myslef + don't forget to add the css code in custom.css 0 Quote
Waqas Dar 7,036 Posted August 20, 2018 Posted August 20, 2018 4 minutes ago, ☠ ReX_XeNoME said: yeah its and i have tested all my tutorials by myslef + don't forget to add the css code in custom.css yeah i know i got it. ur tutorials are very useful with fully details step by step small and easy 1 Quote ⚡ Quick Access & Member Actions 📝 Create Account / Register 🔐 Member Login 🔍 Search Everything 🔥 Activity Feed (Live Updates) 🏠 Go to Portal Home 📩 Contact Admin Support ❓ Help & Support Center 🏆 Community Leaderboard 👨💼 Forum Staff Team 📜 Terms & Rules 🔒 Privacy Policy 📢 Forum Announcements
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.