Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox, Google Chrome
Screenshot of problem : https://i.gyazo.com/11ae59a56968990d18631f86f8efd561.gif
Who the problem concerns : All members
Forum link : http://think-tank.forumotion.com/
Description of problem
Hello,I would like to make the notifications of the FM Toolbar appear like the image i added above. Can they appear like that? If yes how can i control them via javascript?
I am using this code for the image:
- Code:
$(function() {
var scrollNav = function() {
var scroll = $(window).scrollTop();
if (scroll >= 600) $('#btmBox').attr('style','bottom:40px;transition:600ms;right:2px;z-index:20000;');
if (scroll < 600) $('#btmBox').attr('style','bottom:40px;transition:600ms;right:-60%;z-index:20000;');
};
scrollNav();
$(window).scroll(function() { scrollNav() });
});
Thanks for any help!
Regards,
Luffy.