gpt4 book ai didi

javascript - 弹出 block - jQuery

转载 作者:行者123 更新时间:2023-12-02 20:31:26 30 4
gpt4 key购买 nike

我希望页面内的容器在事件时占据页面的整个宽度并覆盖在其他所有内容上。这是我目前所拥有的,但它没有按我想要的方式工作:

$(function() {
$('.main a').click( function() {
var href = $(this).attr('href');
$(href).animate({
width: [940, 'swing'],
height: [500, 'swing'],
opacity: 'toggle'
}, 500, 'linear');
return false;
});
});

http://jsbin.com/anoji4/2/edit

谢谢

最佳答案

你应该通过 CSS 设置

position:absolute;
z-index: 10; /* or higher */
top: 0;
left: 0;

到你的可扩展div

当您打开它们时,您可以使用

设置高度和宽度
$(href).animate({
width: [$('body').width(), 'swing'],
height: [$('body').height(), 'swing'],
opacity: 'toggle'
}, 500, 'linear');

或者像您一样使用 $('html') 或静态大小代替 $('body')

关于javascript - 弹出 block - jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4052020/

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