作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
自 2 周以来,我一直在使用鼠标悬停效果的页面上工作,并且我在我的 html 和 css 中创建了 3 个鼠标悬停图像,现在,我想到了一个新的效果,就像一个焦点在“悬停”对象上,例如:
如果我将鼠标悬停在 div 1 上,页面的不透明度会大大降低,主要是在我添加具有低“不透明度效果”的背景色的地方。
这里的问题是我不知道该怎么做,我试过了
.college hover > body
{
background-color:black;
opacity: 0.5;
}
但是没用。
我也想知道以后是否需要使用javascript?我已经使用过它,但我真的不太了解它是如何工作的。
.college .image {
left: 100px;
top: 475px;
position: absolute
}
.college:hover .imagefirst {
opacity: 0.2;
}
.college .imagesecond {
width: 550px;
height: 900px;
transform: translate(-110px, 500px);
transition: transform 0.5s ease-in-out 0.25s;
border-radius: 8px;
overflow: hidden;
}
.college:hover>.imagesecond {
transform: translate(-110px, -500px);
}
.college:hover>body {
background-color: black
}
.lycee .image {
left: 700px;
top: 500px;
position: absolute
}
.lycee .imagefourth {
width: 537px;
height: 600px;
transform: translate(-160px, 500px);
transition: transform 0.5s ease-in-out 0.2s;
border-radius: 8px;
overflow: hidden;
}
.lycee:hover>.imagefourth {
transform: translate(-160px, -325px);
}
.formations .image {
left: 1250px;
top: 510px;
position: absolute;
}
.formations .imagesixth {
width: 550px;
height: 900px;
transform: translate(-100px, 400px);
transition: transform 0.5s ease-in-out 0.2s;
border-radius: 8px;
overflow: hidden
}
.formations:hover>.imagesixth {
transform: translate(-173px, -600px);
}
body {
background: url("http://via.placeholder.com/350x150") 33em 0% fixed no-repeat;
position: fixed;
background-color: rgb(0, 85, 170);
}
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css.css" />
<title> sainte marie </title>
</head>
<body>
<div class="saintemarie">
<a href="college/collegesaintemarie.html">
<div class="college">
<img class="image imagefirst" src="http://via.placeholder.com/350x150" />
<img class="image imagesecond" src="http://via.placeholder.com/350x150" />
</div>
</a>
<a href="lycee/lyceesaintemarie.html">
<div class="lycee">
<img class="image imagethird" src="http://via.placeholder.com/350x150" />
<img class="image imagefourth" src="http://via.placeholder.com/350x150" />
</div>
</a>
<a href="c&formation/c&fsaintemarie.html">
<div class="formations">
<img class="image imagefifth" src="http://via.placeholder.com/350x150" />
<img class="image imagesixth" src="http://via.placeholder.com/350x150" />
</div>
</a>
</div>
</body>
</html>
最佳答案
document.body.onload = function(){
colleges = document.body.getElementsByClassName("college");
for (var i = 0; i < colleges.length; i++) {
colleges[i].addEventListener('mouseover', function(){
document.body.style = "background-color: black"; //apply styles here
});
colleges[i].addEventListener('mouseout', function(){
document.body.style = ""; //revert changes
});
}
}
但是,如果您将其他内联 css 添加到代码中另一部分的元素,则会遇到问题,因为在还原更改时,所有内联样式都将被删除。有了 jQuery,它变得更容易,也更不易出错。
关于javascript - 我想在另一个 div 中做一个特定的鼠标悬停效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44761362/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!