Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Gunner714

New Coder
Hi,
cant figure it out.
I'm looking for way (or solution) to do button animation like below:

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
 
Check out this link from W3schools! I believe you are looking for a :hover transition styling rule.
Hope this helps!
 
Can do actually simple slide from left to right on button but it goes complicated with add first small transition at the beginning and last transition at the end(hover out) and stick it together. My slide to right code below:

CSS
CSS:
.button {
    display: inline-block;
    padding: .75rem 1.25rem;
    color: #fff;
    text-transform: uppercase;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    
    &:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: $color-grey-dark-1;
        z-index: -2;
    }
    &:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: darken($color-grey-dark-1, 15%);
        transition: all .3s;
        z-index: -1;
    }
    &:hover {
        color: #fff;

        &:before {
            width: 100%;
        }
    }
}

HTML
HTML:
<div class="container">
    <a href="#" class="button">Hover me</a>
</div>
 

New Threads

Latest posts

Buy us a coffee!

Back
Top Bottom