我遇到了让旋转木马正常工作的问题。我使用yeomen搭建了angular应用程序。我得到了这个错误
Error: [$compile:ctreq] Controller 'carousel', required by directive 'slide', can't be found!
http://errors.angularjs.org/1.2.26/$compile/ctreq?p0=carousel&p1=slide
at http://localhost:9000/bower_components/angular/angular
我目前正在使用Laravel/Vue图像轮播,图像渲染得很好,但是当我使用v-playback组件加载视频时,我得到了以下错误:
Module parse failed: Unexpected character ' ' (1:0)
You may need an appropriate loader to handle this
file type, currently no loaders are configured to
process this file.
我试着找了一个webpack.config.js,但我得到的是一个webpack.mix.js,它只有这些:
c
我使用的是一个图像轮播脚本,它对浏览器的负担很大。它在Opera和Chrome中工作得很好,在FF中还算不错,在IE中绝对让我崩溃。所以我想给IE用户一个没有任何动作的简单HTML的选择/JS。
该脚本没有使用MT或jQuery等类似的380行JS。是否有可能为IE用户提供一个简单的HTML替代方案?
var browserName=navigator.appName; if (browserName=="Microsoft Internet Explorer") { // what command can i use? }