需要一些帮助来构建一个扩展的 div

发布于 2024-09-25 06:22:28 字数 147 浏览 3 评论 0原文

我需要一个扩展 div,它在初始化时仅显示 300x960 图像的顶部 30x960 以及左上角的“扩展”按钮。单击展开按钮将使 div 向下“滑动”以显示 300x960 的完整图像。单击其他任何位置,无论是展开还是收缩,都会将用户带到广告商网站。我可以从中构建任何快速片段吗?

I need a expanding div where it initializes showing only the top 30x960 of a 300x960 image along with an 'expand' button in the upper left. Clicking on the expand button will 'slide' the div down to reveal the full image of 300x960. Clicking anywhere else, whether it's expanded or contracted, will take the user to an advertisers website. Any quick snippets out there I can build from?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我三岁 2024-10-02 06:22:28

尝试这样的事情:

<div style="width:960px; height:30px; position:relative; overflow:hidden">
<a href="http://another/site/"><img src="image.jpg" alt="" /></a>
<input type="button" value="Expand" style="position:absolute; left:10px; top:10px" onclick="expand(this)" />
</div>

<script type="text/javascript">
function expand(btn)
{
    btn.style.display='none';
    slide(btn.parentNode,30);
}

function slide(div,curHeight)
{
    if(curHeight==300)return;
    curHeight+=10;
    div.style.height=curHeight+'px';
    setTimeout(function(){slide(div,curHeight);},25);
}
</script>

Try something like this:

<div style="width:960px; height:30px; position:relative; overflow:hidden">
<a href="http://another/site/"><img src="image.jpg" alt="" /></a>
<input type="button" value="Expand" style="position:absolute; left:10px; top:10px" onclick="expand(this)" />
</div>

<script type="text/javascript">
function expand(btn)
{
    btn.style.display='none';
    slide(btn.parentNode,30);
}

function slide(div,curHeight)
{
    if(curHeight==300)return;
    curHeight+=10;
    div.style.height=curHeight+'px';
    setTimeout(function(){slide(div,curHeight);},25);
}
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文