このプラグインを使用しましたhttps://github.com/noraesae/perfect-scrollbarありますがminScrollbarLength
、設定maxScrollbarLength
したいのですが、プログラミングが苦手で、このオプションをどこで変更できるかわからないので、助けを求めます。
インデックスの私のコード
<script>
jQuery(document).ready(function ($) {
"use strict";
$('#Default').perfectScrollbar({
suppressScrollY: true,
useBothWheelAxes: true,
minScrollbarLength: 300,
//and here i wana set maxScrollbarLength
});
$( ".ps-scrollbar-x" ).append( "<p>Drag This</p>" );
});
</script>