CSS div固定定位

发布于 2024-11-19 08:08:04 字数 448 浏览 5 评论 0原文

我有一个 div,其中包含一个较小的 div 和一些文本。容器 div 有一个 webkit 过渡,可将其移出屏幕。我希望较小的 div 随之移动,直到它到达页面边缘,然后保持固定,几乎就像它“卡在”页面一侧一样,而容器 div 继续从其下方移出视线。这可以做到吗?

//CSS
.move{
    -webkit-transition-property:left;
    -webkit-transition-timing-function:ease-in-out;
    -webkit-transition-duration:1s;
    left:-200px;
}

//HTML
<div onclick="this.className='move'">
     <div>
         some text here
     </div>
</div>

I have a div that contains a smaller div with some text. The container div has a webkit transition that moves it off the screen. I want the smaller div to move with it, until it gets to the edge of the page, then remain fixed, almost as if it gets 'stuck' on the side of the page, while the container div continues to move underneath it out of sight. Can this be done?

//CSS
.move{
    -webkit-transition-property:left;
    -webkit-transition-timing-function:ease-in-out;
    -webkit-transition-duration:1s;
    left:-200px;
}

//HTML
<div onclick="this.className='move'">
     <div>
         some text here
     </div>
</div>

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

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

发布评论

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

评论(1

黎歌 2024-11-26 08:08:04

这里有一个例子: http://jsfiddle.net/LjjRM/

几点:

1.) jQuery

2.) 位置:绝对

Here's an example for you: http://jsfiddle.net/LjjRM/

A couple points:

1.) jQuery

2.) position: absolute

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文