gpt4 book ai didi

html - 如何在悬停该图像时在图像高度中间设置上一个下一个图标

转载 作者:行者123 更新时间:2023-11-28 13:01:06 25 4
gpt4 key购买 nike

我正在做 previous 和 next 实验,比如 facebook,当我们将鼠标悬停在图像上时,它会显示 previous 和 next 图标。我使用简单的 CSS 稍微修改了图标。但我在这里唯一缺少的是导航 div 的正确位置。无论图像是 600*600 还是 1024*800,我都希望它们位于图像中间。

我尝试了这些,但没有取得任何进展 -

var maskHeight = ($('mainOne').height() - 50);
$('#hoverP').css({top:maskHeight}).show();
$('#hoverN').css({top:maskHeight}).show();

这里是示例测试用例,其中包括与问题相关的所有内容,请帮助。-

    <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test</title>
<script src="./jQuery.min.js"></script>
<style>
.imgHover {
display: inline;
position: relative;
}
.imgHover .hoverP {
display: none;
position: absolute;
left: 3px;
top:-200px;
z-index: 2;
}
.imgHover .hoverN {
display: none;
position: absolute;
right: 0px;
top:-200px;
z-index: 2;
}
.prev_big,.next_big {
background-color:rgba(66,28,82,0.4);;
border:2px solid rgba(255,255,255,0.7);
color:#FFF;
font-size:78px;
font-weight:700;
width:30px;
height:200px;
line-height:200px;
-webkit-transition:.4s all;
-moz-transition:.4s all;
-o-transition:.4s all;
transition:.4s all;
text-shadow:0 1px 0 #FFF;
z-index:3;
text-decoration:none;
-moz-transition-duration:.4s;
-webkit-transition-duration:.4s;
-o-transition-duration:.4s;
transition-duration:.4s;
}

.prev_big {
border-bottom-right-radius:15px;
border-top-right-radius:15px;
margin-left:-3px;
padding:0 20px 0 0;
}

.next_big {
border-bottom-left-radius:15px;
border-top-left-radius:15px;
right:0;
padding:0 5px 0 15px;
}

.prev_big:hover,.next_big:hover {
color:#FFF;
background:#732C7B;
padding-top:140px;
padding-bottom:140px;
}

</style>

</head>
<script>
$(function() {
$(".imgHover").hover(
function() {
$(this).children("img").fadeTo(200, 0.95).end().children(".hoverP").show();
},
function() {
$(this).children("img").fadeTo(200, 1).end().children(".hoverP").hide();
}
);
$(".imgHover").hover(
function() {
$(this).children("img").fadeTo(200, 0.95).end().children(".hoverN").show();
},
function() {
$(this).children("img").fadeTo(200, 1).end().children(".hoverN").hide();
}
);
});
</script>
<body>

<div class="imgHover">
<div class="hoverP"><a class="prev_big" href="page1.html" title="View Previous Page"><</a></div>
<img id="mainOne" src="./oneB.jpg" alt="">
<div class="hoverN"><a class="next_big" href="page3.html" title="View --Next-- Page">></a></div>
</div>

</body>
</html>

最佳答案

为什么你需要 jQuery,一堆带有填充标记的样式?这是我从头开始做的,你看看它是否有用

Demo

另一方面,您可以使用过渡来实现平滑 - Demo

<div class="wrapper">
<img src="http://www.google.co.in/intl/en_ALL/images/logos/images_logo_lg.gif" />
<div class="bar"><a href="#">Previous</a><a href="#">Next</a></div>
</div>

CSS

div.wrapper {
position: relative;
display: inline-block;
}

.bar {
opacity: 0;
background: rgba(25,25,25,.5);
position: absolute;
bottom: 0;
width: 100%;
height: 30px;
line-height: 30px;
}

div:hover .bar {
opacity: 1;
}

.wrapper a {
position: absolute;
}

.wrapper a:nth-of-type(1) {
left: 0;
}

.wrapper a:nth-of-type(2) {
right: 0;
}

关于html - 如何在悬停该图像时在图像高度中间设置上一个下一个图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16140910/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com