html如何正确引用控件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html如何正确引用控件相关的知识,希望对你有一定的参考价值。
将插件下载下来后,你可以在页面里直接引入插件,比如:
<link href="插件css"/>
<script src="插件js"></script>
2. 也可以用node包去安装,然后用import 去引用
比如在vue里引入引入swiper:
安装:npm install vue-awesome-swiper --save
在main.js里全局注册:
Vue.use(VueAwesomeSwiper)
引入其css:
require('swiper/dist/css/swiper.css')
在模板里引入js:
import swiper, swiperSlide from 'vue-awesome-swiper'
在模板里注册组件:
components:
swiper,
swiperSlide
参考技术A 控件一般有三种类型1.纯css类型的样式表。
2.纯js的闭包函数。
3.css和js组合的插件库。
使用时一般需要在页面用引用css文件和js文件,然后初始化js方法,最后按照js的api进行调用就可以了。
以上是关于html如何正确引用控件的主要内容,如果未能解决你的问题,请参考以下文章