Questions tagged as 'hover'

1
answer

How to apply hover effect (JQuery) to a specific group of classes?

I'm creating a web page that would look something like a store. The idea of this code is that, when hovering in the product.device, two other divs appear (one on the right and one on the bottom), and this effect needs to be done in JQuery / Java...
asked by 13.11.2017 / 01:48
1
answer

Hover in SVG on my page does not respond

I'm trying to create a circle with several divisions in SVG, and each section when passing the mouse, I would like the background color to change. However the code I'm trying to use is not working. I added the class "t3-30" in the square that I...
asked by 11.11.2018 / 21:43
1
answer

Transition when using hover - How to do a "reverse" mode?

Here's the transition: .subcont { width: 250px; height: 180px; background: purple; } .border1 { position: absolute; width: 5px; height: 0; margin-left: 250px; margin-top: -5px; background: red; transition-...
asked by 21.11.2017 / 02:02
2
answers

Hover in navigation with html and css

Well folks, it's the following, I've been following this for some time. I'm trying to make a box around the links in hover , this box will have a shadow and rounded corners, can someone help me? Thanks in advance .main-nav {...
asked by 25.04.2018 / 16:07
2
answers

Dropdown hover run only above 1200px

If someone can help me, I need the hover JavaScript to work only at resolution above 1200px, I have made the code but it is not working. $(function() { if($(window).width() > 1200) { $('ul.nav li.dropdown').hover(function() {...
asked by 19.04.2017 / 21:00
2
answers

How to use the inverse function of jQuery to undo something?

I am using the code below to apply an effect and undo as soon as the mouse is removed but it does not seem to work and shows no error message. I'm using version 1.12.4 of jQuery. $(".project").on("hover", (function() { $(this).fi...
asked by 14.10.2016 / 14:37
2
answers

Div Slider between images on Hover

Good afternoon, I need to set up a project for a photography client and he asked me for something I had never done, I tried to search the internet but I did not find anything that would help me what I needed. I need in the DIV where the previ...
asked by 15.02.2018 / 16:57
2
answers

How can I use mouseover to change the background color of a div?

Hello, I would like to change the background color of a div when you place the cursor on it, how do I do that? Div in question [HTML]: <div class='container2'> <div class="MP"> <img class='iconDetails' s...
asked by 21.06.2018 / 00:09
1
answer

How to specify an address that is outside a set of 'div'

I made a 'hover' menu but I want to change the color of the gray bar of the menu by pressing the cursor on the 'Search and News' buttons but I do not know how to specify the .navbar address (gray menu) by applying the 'hover' effect on it, even...
asked by 15.07.2018 / 01:34
2
answers

Overlap two images with: hover

My goal would be for a .png image to be over a .jpg image by hovering over it. I tried with the following code: .image{ width: 320px; height: 180px; } .image:hover{ content: url('playplay.png'); } But it looks like this When pa...
asked by 04.01.2018 / 01:09