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.
我一直在互联网上寻找可以让我滚动某个 div 的 css3 功能。
现在为什么我只想使用它,因为我正在创建一个配置文件,只允许我使用 CSS ......
因此,如果有人对此有一些信息,我将不胜感激。
谢谢你。
您可以使用 CSS3 和过渡,可能是这样的:
#mydiv { position: relative; top: 0; transition: top 1.0s ease; } #mydiv:hover { top: -100px; transition: top 1.0s ease; }
这应该使它在悬停时向上滚动。要使其“滚动”,您可以确保它位于具有溢出:隐藏的容器内。
这是未经测试的,但如果它看起来是你想要的,有大量的 CSS3 动画在线资源。