Node animation on mouse hover

Node animation on mouse hover

Joined
Jun 28, 2020
Messages
3,269
Reaction score
1,309
Credits
$6,879
thanks to dear member @jessy submitted a new resource:

Node animation on mouse hover - Prepare node for effects

add code to
CSS:
/* Prepare node for effects */
.template-forum_list .block-container .node {
    /* Remove previous box border */
    border-style: none;
    /* For positioning the pseudo-element */
    position: relative;
    /* Add shadow effect to non-hover nodes */
    box-shadow: 2px 2px 1px 0px rgba(99, 99, 99, 0.3);    /* box-shadow: x-offset y-offset blur spread rgba(r, g, b, opacity) */
    /* transition time to ease back original state (slower) */
    transition...

Read more about this resource...
 
Top