首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在运行Simplebar.js时遇到问题

在运行Simplebar.js时遇到问题
EN

Stack Overflow用户
提问于 2019-01-04 22:11:12
回答 1查看 1.1K关注 0票数 0

我正在尝试学习这个叫做Simplebar的很酷的插件,但是我不能让它显示在一个演示页面上。我遗漏了什么?

根据https://github.com/Grsmto/simplebar的说法,我只需要引用simplebar.css和脚本,然后将"data-simplebar“添加到我希望可以滚动的任何div中。

代码语言:javascript
复制
<!DOCTYPE html>
<html>

<head>
  <title>Page Title</title>
  <link rel="stylesheet" href="https://unpkg.com/simplebar@latest/dist/simplebar.min.css">
</head>

<body>

  <div data-simplebar style="background-color: grey; width: 400px;">
    <h1>My First Heading</h1>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
    <p>My first paragraph.</p>
  </div>
</body>
<script src="https://unpkg.com/simplebar@latest/dist/simplebar.js"></script>

</html>

EN

回答 1

Stack Overflow用户

发布于 2019-01-04 22:16:19

将高度添加到div以解决此问题:

代码语言:javascript
复制
<!DOCTYPE html>
<html>
   <head>
      <title>Page Title</title>
      <link rel="stylesheet" href="https://unpkg.com/simplebar@latest/dist/simplebar.min.css">
   </head>
   <body>
      <div data-simplebar style="background-color: grey; width: 400px;height:300px;">
         <h1>My First Heading</h1>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
         <p>My first paragraph.</p>
      </div>
<script src="https://unpkg.com/simplebar@latest/dist/simplebar.js">     </script>
       </body>
    </html>`
票数 -1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/54040592

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档