http://imgur.com/bXU8I

我有这张图片并且知道我需要使用 css 过渡来使黑胶在滚动时向下移动?你会怎么做呢?

最佳答案

position:relative 应用于“vinyl”元素,然后在其悬停状态下设置 top:#px

例如:

#vinyl {
 position: relative;
 /* transition properties here */
}

#vinyl:hover {
 top: 5px;
}

10-07 20:05