javascript - 滚动小图像及其内容

标签 javascript css scrollbar

我正在开发一个网页模板,其中的绿色按钮需要随文本一起滚动。 当我用鼠标滚动时,绿色按钮应该会掉下来。 当我向上滚动时,它会上升。 就像照片中一样:

enter image description here

最佳答案

与其创建自定义滚动条,不如在 css 中设置样式,试试这个:

html, body::-webkit-scrollbar {
    width: 0px;
    height:0px;
}
.container{
  width:400px;
  height:150px;
  position:relative;
  border:1px solid rgba(0,0,0,0.1);
  padding:10px;
  overflow:hidden;
  overflow-y:scroll;
}
p{
  height:auto;
  margin:auto;
  font-size:15px;
}
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-track {
    background: #ccc; 
}
::-webkit-scrollbar-thumb {
    background: green;
    box-shadow:inset 0px 0px 12px 0px rgba(0,0,0,0.6);
    border-radius:10px;
}
::-webkit-scrollbar-thumb:active {
    background: #555; 
}
<div class="container">
  <p>
    This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. This the text. 
  </p>
</div>

关于javascript - 滚动小图像及其内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51582816/

相关文章:

javascript - 最小谷歌地理编码器不返回任何结果

javascript - 在 React 组件中将 SVG 字符串转换为图像

jquery - Material 设计精简版(MDL)中的水平和垂直中心卡

css - 滚动页面不只是 div CSS

javascript - 只要对象属性不为 NaN,就将对象推送到数组

Javascript 保存、删除和重新加载输入值

php - 使用 PHP 从显示 : none to display: block 设置一个 CSS ID

html - 使用css实现浮雕/倾斜/3d边框效果

wpf - WPF 中的打印 Web 浏览器控件

jquery - Chrome 淡入滚动条问题