我尝试了这个,但是没用
<div id="vantajs"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/100/three.min.js"></script>
<script src="https://www.vantajs.com/dist/vanta.birds.min.js"></script>
<script>
VANTA.BIRDS({
el: "#vantajs",
})
</script>
How to bind <script> element's src attribute in AngularJS
因此,我们不能使用脚本标签
还有其他方法可以添加vantajs吗?
答案 0 :(得分:0)
声明要在其中使用js的变量,例如app.component.ts
从'@ angular / core'导入{Component,OnInit}; 声明VAR VANTA; @Component({
选择器:“ my-app”,
templateUrl:'./app.component.html',
styleUrls:['./app.component.css']
})
导出类AppComponent实现OnInit {
name ='Angular';
ngOnInit(){
VANTA.CELLS({ el:“#your-element-selector” })
}
}