vue.js中怎么实现一个层叠轮播效果,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
为澄城等地区用户提供了全套网页设计制作服务,及澄城网站建设行业解决方案。主营业务为网站设计、网站建设、澄城网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
此组件是基于jquer封装,在vue项目中使用首先需要先安装jquery插件:指令:npm install jquery,安装完成之后再webpack.base.conf.js配置插件:
plugins: [ new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' }), ]
主要实现逻辑js文件:postercarousel.js;
代码如下:
(function(jq){ function postercarousel(o, options, data){ this.parent = jq("#"+ o); this.body = jq("body"); if (this.parent.length <= 0) { return false; } this.options = jq.extend({}, postercarousel.options, options); if(typeof(data) !== 'object') return false; this.data = data || {}; this.reset(); //处理页面resize var _this = this; jq(window).resize(function(){ _this.reset(); }); }; postercarousel.prototype = { reset: function(options){ if(typeof(options) == 'object'){ jq.extend(this.options, options); } if(parseInt(this.body.outerWidth())>1255 || navigator.userAgent.indexOf('iPad') !== -1){ this.options.width = 970; }else{ this.options.width = 970; } this.total = this.data.length; this.pageNow = this.options.initPage; this.preLeft = 0; this.nextLeft = this.options.width-530; this.preNLeft = -530; this.nextNLeft = this.options.width; this.pageNowLeft = (this.options.width-640)/2 this.drawContent(); }, drawContent: function(){ this.parent.empty(); this.parent.css({width:this.options.width+"px", height:this.options.height+"px", position: "relative"}); this.content = document.createElement("DIV"); this.content.className = this.options.className; this.content.cssText = "width:"+this.options.width+"px;height:"+this.options.height+"px;cursor:move;position:absolute;"; this.bottomNav = document.createElement("DIV"); this.bottomNav.className = "bottomNav"; for(var i=1; i<= this.total; i++){ var bottomItem = document.createElement("DIV"); bottomItem.className = "bottomNavButtonOFF"; if(i == this.pageNow){ bottomItem.className = "bottomNavButtonOFF bottomNavButtonON"; } bottomItem.setAttribute("ref", i); this.bottomNav.appendChild(bottomItem); } this.content.appendChild(this.bottomNav); this.bannerControls = '
相关vue组件代码以及使用方式:
代码如下:
关于vue.js中怎么实现一个层叠轮播效果问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。