改变“顶部”带有 jQ​​uery 单击的绝对定位元素的 css

发布于 2025-01-06 07:00:13 字数 733 浏览 0 评论 0原文

我有一个 div (#slider),我正在使用position:absolute;允许它跨越屏幕的宽度,而不必破坏我的包装器代码。但是,我有一个菜单,可以使用 jQuery slipToggle 单击“工作”div 进行切换。我想调整绝对定位元素的“top”属性,以便当我的菜单向下滑动时它会向下移动。

这可以在 http://osephj.com/dev/ 上实时查看,

这一切都使用自适应媒体查询,显然,通过 jQuery 点击触发的 CSS 需要包含媒体查询,以便顶部位置适用于所有屏幕尺寸。

现在,我用于切换菜单的代码是这样的:

    <script type="text/javascript">
 $(document).ready(function() {
$('#worktoggle').click(function(){
     $('div.slider').css('top', 700);
     $('div.work').slideToggle(600,'swing');
     return false;
   });
});
</script>

现在正在重新定位 .slider div,但我需要能够更改每个媒体尺寸的值。另外,我希望它能够与菜单中的 600 速度的“摇摆”过渡相匹配。基本上,如果它是在同一父元素中跟随我的“工作”UL 的块元素,它将如何操作。

I've got a div (#slider) that I'm using position: absolute; to allow it to span the width of the screen without having to break my wrapper code. However, I have a menu that toggles upon click of the "work" div using jQuery slideToggle. I would like to adjust the "top" property of the absolute positioned element so that it moves down when my menu slides down.

This can be viewed live at http://osephj.com/dev/

This is all using adaptive media queries, so obviously the CSS triggered by the click via jQuery would need to have media queries in it so the top position will apply appropriately for all screen sizes.

Right now, the code I have for toggling the menu is this:

    <script type="text/javascript">
 $(document).ready(function() {
$('#worktoggle').click(function(){
     $('div.slider').css('top', 700);
     $('div.work').slideToggle(600,'swing');
     return false;
   });
});
</script>

This is now relocating the .slider div, but I need to be able to change the value for each media size. Also, I'd like it to match the "swing" transition at the 600 speed that the menu comes down with. Basically, how it would act if it were a block element that followed my "work" UL in the same parent element.

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

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

发布评论

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

评论(1

嘿咻 2025-01-13 07:00:13

css 方法可能就是您所寻找的。

$('#').css('top', 1000);

addClassremoveClass 将您自己的类添加到元素中。

您可能需要查看 slideDown 过渡动画方法。

您希望将此代码添加到您的 click 函数中,因为您希望它更改 onclick。

$('#worktoggle').click(function(){
    $('div.toMove').css('top', 100);
    $('div.work').slideToggle(600,'swing');
     return false;
});

css method is probably what your looking for.

$('#').css('top', 1000);

or addClass and removeClass to add your own class to the element.

you may want to look at the slideDown animation method for the transition.

You want to add this code inside your click function since you want it to change onclick.

$('#worktoggle').click(function(){
    $('div.toMove').css('top', 100);
    $('div.work').slideToggle(600,'swing');
     return false;
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文