我正在使用list scroll er jquery plugin Link Link
在index.html中添加了js和css文件
<script src="../assets/js/jquery.als-1.7.js"></script>
在typings.d.ts
文件中声明var
declare var als:any;
declare let $itemsize:any;
app.component.ts文件
ngAfterViewInit() {
$("#lista1").als({
visible_items: 4,
scrolling_items: 2,
orientation: "horizontal",
circular: "yes",
autoscroll: "no",
interval: 5000,
speed: 500,
easing: "linear",
direction: "right",
start_from: 0
});
}
错误 $ itemsize未定义