Text following mouse cursor on hover to show only for desktop
-
Hey everyone, I added this jquery to my site in order to have the project name following the mouse on hover:
<script>
var windowWidth = window.innerWidth;
if(windowWidth > '1024') {
jQuery(document).bind('mousemove', function(e){
jQuery(".titlewrap-on-image").offset({left: e.pageX, top: e.pageY});
});
}
</script>@media (min-width: 1024px){
.thumb:hover .titlewrap-on-image {
display: block;
position: absolute;
}.titlewrap-on-image {
display: none;
font-family: "Dela Gothic One";
font-size: 30px;
text-decoration: underline;
color: white;
position: absolute;
z-index: 1000;
}
}I'd like to have the project title displayed above the thumbnails in both tablet and and mobile but I have no idea on how to achieve it. I have a basic knowledge of CSS and absolutely 0 of Js (I found the script online and adapted it to my site with CSS).
Can anyone pls help?
Before you post:
- When using a WordPress Cache plugin, disable it or clear your cache.
- Update Lay Theme and all Lay Theme Addons
- Disable all Plugins
- Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"
This often solves issues you might run into
When you post:
- Post a link to where the problem is
- Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
- If the problem is difficult to explain, post screenshots / link to a video to explain it