Jump to content

Adăugare Background Mişcător În Spatele Logoului?


Go to solution Solved by Kennzo,

Recommended Posts

Posted

Cum aş putea să adaug un background în spatele bannerului care să se mişte încet către stânga, cum e şi pe alte forumuri?

Posted

In FTP
Public> style_images > tema ta > js > 
 
Adauga la sfarsit in fata la:

 });

urmatoarele:

var backgroundpos = 0;
    var offset = 1;
    function scrollbackground() {
        offset = (offset < 1) ? offset + (backgroundpos - 1) : offset - 1;
        $('#branding').css("background-position", + offset + "px 0");
        setTimeout(function() {
            scrollbackground();
            }, 100
        );
    }
    scrollbackground();

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.