JQuery Scrollable Text

前端 未结 3 1819
旧巷少年郎
旧巷少年郎 2021-01-28 09:47

I\'m searching for a jquery plugin that will bound text inside a scrollable box. Most of the scroll plugins are converting the browser scroll bar but I want to keep that as it i

3条回答
  •  借酒劲吻你
    2021-01-28 10:02

    You really don't need jQuery for this. Just some CSS.

    .Information{
    height:100px;
    overflow:auto;
    }
    

    If you have a genuine need for this plugin then make sure you're referencing jQuery correctly and the link to the plugin js file.

    If you run the page in your browser do you get anything in the console window. Any errors.

    EDIT: Added a JSFiddle

    EDIT: Also be sure you're referencing the required assets:

    jquery.uscrollbar.js
    jquery.uscrollbar.css
    

提交回复
热议问题