Hey! Yup there is a way to do that. Guess where? jQuery
God, I love this language ^^ Let me explain at first what’s what.
You can use jQuery hover
function. It is a very simple function that does 2 things. It triggers a function when you hover over the thing and hover out of that thing. The structure is goddamn simple 
.hover( handlerIn(eventObject), handlerOut(eventObject) )
I know it looks terrible, but it is actually pretty easy
.hover()
function must contain of two functions separated with ,
to do something when hover is over and out. I’ll show an example here.
html
<p>Awesome text is awesome.</p>
css
p { color: blue; }
newclass { color: red }
jQuery
$(document).ready(function() {
$("p").hover(
function() {
$(this).addClass("newclass");
},
function() {
$(this).removeClass("newclass");
}
);
});
The code above goes like this. When you hover over the paragraph block <p></p>
which by default is in color blue, it adds a class newclass
to the object you hover over. When you take the mouse pointer off of the it removes the class.
But let’s make it somehow useful for you. You can create a block that contains two other blocks like this:
<div class="item-container">
<div class="item-image"></div>
<div class="item-text"></div>
</div>
and make some jQuery to trigger when you hover over the item-container
.
$(document).ready(function() {
$('.item-container').hover(
function() {
$(this).children('item-image').animate( { top: '+=50' } );
},
function() {
$(this).children('item-image').animate( { top: '-=50' } );
}
);
});
I’ve used .children()
function here. There is also a .find()
function which works very similar. The difference is that .children()
looks for stuff that is directly under the parent item. .find()
search for them. hookedonwinter from stackoverflow said it quite well in this topic:
Use children
for immediate descendants, or find
for deeper elements.
I hope my little tutorial will help you with your issues. Thanks @thesergie for pointing to this topic
I’ve started to be recognized as a jQuery guy ^^ Btw, have you seen what we did with @Zacchino? Full viewport image slider with quotes inside Webflow 