Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现很多帖子与我的要求相似,但没有一个有效..所以我在这里发帖。 我有一个要求,比如“facebook图标会在那里,悬停图标会向上滑动,并且like box将显示在facebook icon的位置”..如何实现这个..
我试过position absolute,fixed width,etc了……但是没用……
position absolute,fixed width,etc
任何帮助都是不言而喻的。提前致谢..
这对于仅使用 CSS 转换的纯 CSS 是可能的。这是一个非常好的教程,它应该向您展示如何使用 CSS 让您的对象向上滑动。
本质上,您只需要transform: translate(0,50px);或类似的东西(以及在所有浏览器中支持它所需的所有其他变体。如果您希望它在一段时间内滑动,您可以添加transition: all 2s ease-in-out;。看看这个小提琴。但更重要的是,看看上面提到的教程。它应该给你你需要的一切:)
transform: translate(0,50px);
transition: all 2s ease-in-out;