Is there a way to adjust the opacity of a specific div class and other div classes when hovering over that particular div? If so, could someone explain how this can be achieved? Any feedback on this topic is greatly appreciated. Thank you.
Is there a way to adjust the opacity of a specific div class and other div classes when hovering over that particular div? If so, could someone explain how this can be achieved? Any feedback on this topic is greatly appreciated. Thank you.
It seems like this is the solution you've been looking for!
div {
height: 50px;
}
.divOne {
background-color: purple;
}
.divOne:hover{
opacity: 0.7;
}
.divTwo {
background-color: green;
}
.divTwo:hover{
opacity: 0.5;
}
<div class="divOne">
</div>
<div class="divTwo">
</div>
<div class="divOne">
</div>
Check out the functional JSFiddle example: https://jsfiddle.net/19r6nvz7/1/
If you'd like to delve deeper, here are some helpful resources:
:hover - https://www.w3schools.com/cssref/sel_hover.asp
opacity - https://www.w3schools.com/css/css_image_transparency.asp
When it comes to hover opacity, there are actually two distinct types to consider. The first is div opacity, which affects the visibility of the entire div as well as its content. This can be achieved using CSS code like this:
#div1:hover{ opacity:0.5; }
The second type is background opacity for a div, which only impacts the background itself and not the content within. In this case, we can use RGBA values in the CSS declaration to achieve the desired effect:
#div1:hover{ background:rgba(0,0,0,.5); }
Feel free to give this a shot.
.primary{
background-color:blue;
height:500px;
}
.secondary{
background-color:yellow
}
.tertiary{
background-color:pink
}
.primary:hover{
opacity : 0.7
}
.secondary:hover{
opacity: 0.5;
}
.tertiary:hover{
opacity: 0.3;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<div class="row">
<div class="col-sm-4 primary"></div>
<div class="col-sm-4 secondary"> </div>
<div class="col-sm-4 tertiary"></div>
</div>
I am trying to achieve a specific layout using CSS. I want the signature to align with the bottom of the other boxes in the design. The challenge is that either box can have different amounts of content, and the signature should always align with the lowes ...
I am working with a date string that is in the format of "DD-MM-YYYY" and have successfully validated it using this code: var dateFormat = /(0[1-9]|[12][0-9]|3[01])-(0[1-9]|1[012])-\d{4}/ ; if(!startDate.match(dateFormat)){ alert("'Start Dat ...
As a beginner in coding, I am taking on the challenge of creating a webpage for a student project using React. I've hit a hurdle while working on the navbar for the page. How can I align the items (Home, Project, Team, Contact) to the right side of t ...
Struggling with implementing jQuery autocomplete in a form with a long list of names in a dropdown select tag. The current code is not functioning as expected. public function executeNew($r) { $this->getResponse()->setContentType('applicat ...
When working with .NET, you can utilize a panel object that provides a border and a label, making it ideal for organizing objects. Is there an equivalent feature in HTML? I initially thought there might be, but my search skills are currently falling short ...
Here is my code: function submitForm(token) { $(document).ready(function() { $("#submit").click(function() { var name = $("#name").val(); var email = $("#email").val(); var password = $("#password").val(); var contact = $ ...
Can I omit the path from an href tag and begin with a question mark instead? For instance, if my website is https://example.com/mycgi, would it be acceptable to have a link like this: <a href="?foo=bar">bar</a>? I tested this on Fir ...
I am looking to create a model page that functions similarly to the inbox popup on Stack Overflow. When we click on the inbox icon, a small box appears with a tiny loader indicating messages or comments. The box then expands depending on the content inside ...
I am encountering a problem with a basic snippet of HTML code: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8> <title>iframe Example</title> </head> <body> <div> & ...
I have a bar chart type created using different div elements. CSS: .outer, .inner, .target { height: 14px; margin-bottom: 5px; } .outer { background-color: #cccccc; width: 200px; margin: 0 auto; position: relat ...
Located at the end of this page, you will find two distinct columns. On the right side, there is a Twitter feed, while the left side showcases a YouTube video and a comments section. Below is the HTML and CSS code that was used to create these columns: .l ...
I'm currently developing an HTML-based app for Android. I've successfully displayed the HTML file using this code: "file:///android_asset/index.html" Now, my goal is to load local image files or fonts within that HTML file from the assets folder ...
https://i.sstatic.net/dHKsV.pngMy Navbar is already defined and working perfectly, but I want to add a full-page background to the Navbar links. Currently, on mobile devices, the link backgrounds do not cover the entire page horizontally and instead look l ...
Why is it that resizing doesn't seem to work in Firefox but functions fine in Internet Explorer? I'm struggling to find a way to make it consistent across all browsers. My goal is to resize the width to 800 and height to 475, disable maximizing t ...
I'm facing an issue that seems simple, but the solutions provided for a similar problem don't seem to be working for me. My aim is to trigger an AJAX request when a button is clicked, but it doesn't seem to be happening. Here's an exa ...
Encountering issues with external CSS files in my React project that uses Material UI components. Despite creating a CSS file for each component in the react components folder, they fail to load upon hard reloading the site. I prefer using external CSS ov ...
I am looking to implement a sticky footer within an absolutely positioned div element. My initial approach was to position the footer div absolutely as well - within an additional relatively positioned "page" div (which would contain the main content of t ...
My table contains text and I have implemented code that displays a small text when hovering over it. I would like the entire column to trigger the text display on hover, ideally in a larger size. Any suggestions on how to achieve this? ...
I am attempting to design a menu that opens when the parent element is clicked and closes when the mouse leaves the previously opened one. It should operate from left to right. Here is an example: <ul class="menuFirst"> <li><im ...
Struggling to manipulate the position and size of a div tag using a JavaScript function, particularly confused about how to retrieve the current width of the div. Here is the function in question function socialExt() { document.getElementById("Left") ...