vue.js層疊輪播

来源:https://www.cnblogs.com/sunpengwei/archive/2018/11/08/postercarousel.html
-Advertisement-
Play Games

最近寫公司項目有涉及到輪播banner,一般的ui框架無法滿足產品需求;所以自己寫了一個層疊式輪播組件;現在分享給大家; 主要技術棧是vue.js ;javascript;jquery;確定實現思路因工作繁忙,暫時不做梳理了;直接貼代碼參考; 此組件是基於jquer封裝,在vue項目中使用首先需要先 ...


最近寫公司項目有涉及到輪播banner,一般的ui框架無法滿足產品需求;所以自己寫了一個層疊式輪播組件;現在分享給大家;

主要技術棧是vue.js ;javascript;jquery;確定實現思路因工作繁忙,暫時不做梳理了;直接貼代碼參考;

此組件是基於jquer封裝,在vue項目中使用首先需要先安裝jquery插件:指令:npm install jquery,安裝完成之後再webpack.base.conf.js配置插件:

 plugins: [
    new webpack.ProvidePlugin({
      $: 'jquery',
      jQuery: 'jquery'
    }),
  ]

 

主要實現邏輯js文件:postercarousel.js;

代碼如下:

  1 (function(jq){
  2         function postercarousel(o, options, data){
  3         this.parent = jq("#"+ o);
  4         this.body   = jq("body");
  5         if (this.parent.length <= 0) { 
  6             return false;
  7         }
  8         
  9         this.options = jq.extend({}, postercarousel.options, options);
 10         if(typeof(data) !== 'object') return false;
 11 
 12         this.data = data || {};
 13         this.reset();
 14         //處理頁面resize
 15         var _this = this;
 16         jq(window).resize(function(){
 17                 _this.reset();
 18         });
 19     };
 20     postercarousel.prototype = {
 21         reset: function(options){
 22             if(typeof(options) == 'object'){
 23                 jq.extend(this.options, options);    
 24             }
 25             if(parseInt(this.body.outerWidth())>1255 || navigator.userAgent.indexOf('iPad') !== -1){
 26                 this.options.width = 970;    
 27             }else{
 28                 this.options.width = 970;    
 29             }
 30             this.total = this.data.length;
 31             this.pageNow = this.options.initPage;
 32             this.preLeft = 0;
 33             this.nextLeft = this.options.width-530;
 34             this.preNLeft = -530;
 35             this.nextNLeft = this.options.width;
 36             this.pageNowLeft = (this.options.width-640)/2
 37             this.drawContent();
 38         },
 39         drawContent: function(){
 40             this.parent.empty();
 41             this.parent.css({width:this.options.width+"px", height:this.options.height+"px", position: "relative"});
 42             this.content = document.createElement("DIV");
 43             this.content.className = this.options.className;
 44             this.content.cssText = "width:"+this.options.width+"px;height:"+this.options.height+"px;cursor:move;position:absolute;";
 45                 this.bottomNav = document.createElement("DIV");
 46                 this.bottomNav.className = "bottomNav";
 47                 for(var i=1; i<= this.total; i++){
 48                     var bottomItem = document.createElement("DIV");
 49                     bottomItem.className = "bottomNavButtonOFF";
 50                     if(i == this.pageNow){
 51                         bottomItem.className = "bottomNavButtonOFF bottomNavButtonON";
 52                     }
 53                     bottomItem.setAttribute("ref", i);
 54                     this.bottomNav.appendChild(bottomItem);
 55                 }
 56                 this.content.appendChild(this.bottomNav);
 57                 this.bannerControls = '<div class="bannerControls"> <div class="leftNav" style="display: block;"></div> <div class="rightNav" style="display: block;"></div> </div>';
 58                 this.content.innerHTML += this.bannerControls;
 59 
 60             this.contentHolder = document.createElement("DIV");
 61             this.contentHolder.style.width = this.options.width + 'px';
 62             this.contentHolder.style.height = this.options.height + 'px';
 63             
 64             for(var item=0, i = 1, l= this.data.length ; item < l ; ++item, ++i){
 65                 var contentHolderUnit = document.createElement("DIV");
 66                 contentHolderUnit.className = "contentHolderUnit";
 67                 contentHolderUnit.setAttribute("ref", i);
 68                 contentHolderUnit.setAttribute("id", 'contentHolderUnit' + (i));
 69                 var unitItem = '<a href="'+this.data[item].url+'" target="_blank" class="elementLink">';
 70                 unitItem += '</a>';
 71                 unitItem += '<img src="'+this.data[item].img+'" alt="'+this.data[item].title+'"/>';
 72                 unitItem += '<span class="elementOverlay"></span>';
 73                 unitItem += '<span class="leftShadow"></span>';
 74                 unitItem += '<span class="rightShadow"></span>';
 75                 contentHolderUnit.innerHTML = unitItem;
 76                 this.contentHolder.appendChild(contentHolderUnit);
 77             }
 78             this.content.appendChild(this.contentHolder);
 79             this.parent.append(this.content);
 80             this.parent.css({overflow:'hidden'});
 81             this.initContent();
 82             this.bind();
 83             this.start();
 84         },
 85         initContent: function(){
 86             contentHolderUnit = this.parent.find(".contentHolderUnit");
 87             contentHolderUnit.css({width:'0px',height:'0px', opacity: 0, left:this.options.width/2+'px', zIndex:0, marginTop: '135px'});
 88             this.parent.find(".contentHolderUnit:nth-child("+this.pageNow+")").css({width:'640px',height:'450', opacity: 1, left: this.pageNowLeft+'px', zIndex: 3, marginTop: 0});
 89             this.parent.find(".contentHolderUnit:nth-child("+this.pageNow+") .elementOverlay").css({opacity:0});
 90             this.parent.find(".contentHolderUnit:nth-child("+this.pageNow+") .leftShadow").css({opacity:1});
 91             this.parent.find(".contentHolderUnit:nth-child("+this.pageNow+") .rightShadow").css({opacity:1});
 92             
 93             var pre = this.pageNow > 1 ? this.pageNow -1: this.total;
 94             var next = this.pageNow == this.total ? 1 : this.pageNow + 1;
 95             this.parent.find(".contentHolderUnit:nth-child("+pre+")").css({opacity: 1, left: this.preLeft+'px',height: '450', width: '530px', zIndex: 0, marginTop: '23px'});
 96             this.parent.find(".contentHolderUnit:nth-child("+pre+") .elementOverlay").css({opacity:0.4});
 97             this.parent.find(".contentHolderUnit:nth-child("+pre+") .leftShadow").css({opacity:0});
 98             this.parent.find(".contentHolderUnit:nth-child("+pre+") .rightShadow").css({opacity:0});
 99 
100             this.parent.find(".contentHolderUnit:nth-child("+next+")").css({opacity: 1, left: this.nextLeft+'px',height: '450', width: '530px', zIndex: 0, marginTop: '23px'});
101             this.parent.find(".contentHolderUnit:nth-child("+next+") .elementOverlay").css({opacity:0.4});
102             this.parent.find(".contentHolderUnit:nth-child("+next+") .leftShadow").css({opacity:0});
103             this.parent.find(".contentHolderUnit:nth-child("+next+") .rightShadow").css({opacity:0});
104         },
105         bind: function(){
106             this.leftNav = this.parent.find(".leftNav");
107             this.rightNav = this.parent.find(".rightNav");
108             this.bottonNav = this.parent.find(".bottomNavButtonOFF");
109             this.lists = this.parent.find(".contentHolderUnit");
110             var _this = this;
111             this.parent.mouseover(function(){
112                 _this.stop();
113                 _this.leftNav.show();
114                 _this.rightNav.show();
115             });
116             this.parent.mouseout(function(){
117                 _this.start();
118                 //_this.leftNav.hide();
119                 //_this.rightNav.hide();
120             });
121             
122             _this.leftNav.click(function(){
123                 _this.turn("right");                     
124             });
125             _this.rightNav.click(function(){
126                 _this.turn("left");                     
127             });
128             _this.bottonNav.click(function(){
129                 var ref = parseInt(this.getAttribute("ref"));
130                 if(_this.pageNow == ref) return false;
131 
132                 if(_this.pageNow < ref){
133                     var rightAbs = ref - _this.pageNow;
134                     var leftAbs = _this.pageNow + _this.total - ref;
135                 }else{
136                     var rightAbs = _this.total - _this.pageNow + ref;
137                     var leftAbs = _this.pageNow - ref;
138                 }
139                 if(leftAbs < rightAbs){
140                      dir = "right";    
141                 }else{
142                      dir = "left";    
143                 }
144 
145                 _this.turnpage(ref, dir);
146                 return false;
147             });
148             
149             _this.lists.click(function(e){
150                 var ref = parseInt(this.getAttribute("ref"));
151                 if(_this.pageNow == ref) {
152                     return true;
153                 }else{
154                     e.preventDefault();
155                 }
156                 if(_this.pageNow < ref){
157                     var rightAbs = ref - _this.pageNow;
158                     var leftAbs = _this.pageNow + _this.total - ref;
159                 }else{
160                     var rightAbs = _this.total - _this.pageNow + ref;
161                     var leftAbs = _this.pageNow - ref;
162                 }
163                 if(leftAbs < rightAbs){
164                      dir = "right";    
165                 }else{
166                      dir = "left";    
167                 }
168                 _this.turnpage(ref, dir);    
169 
170             });
171         },
172         initBottomNav: function(){
173                 this.parent.find(".bottomNavButtonOFF").removeClass("bottomNavButtonON");
174                 this.parent.find(".bottomNavButtonOFF:nth-child("+this.pageNow+")").addClass("bottomNavButtonON");
175         },
176         start: function(){
177             var _this = this;
178             if(_this.timerId) _this.stop();
179             _this.timerId = setInterval(function(){
180                 if(_this.options.direct == "left"){
181                     _this.turn("left");    
182                 }else{
183                     _this.turn("right");    
184                 }
185             }, _this.options.delay);
186         },
187         stop: function(){
188             clearInterval(this.timerId);
189         },
190         turn: function(dir){
191             var _this = this;
192             
193             if(dir == "right"){
194                 var page = _this.pageNow -1;
195                 if(page <= 0) page = _this.total;
196             }else{
197                 var page = _this.pageNow + 1;
198                 if(page > _this.total) page = 1;
199             }
200             _this.turnpage(page, dir);
201         },
202         turnpage: function(page, dir){
203             var _this = this;
204             if(_this.locked) return false;
205             _this.locked = true;
206             if(_this.pageNow == page) return false;
207             
208             var run = function(page, dir, t){
209                 var pre = page > 1 ? page -1: _this.total;
210                 var next = page == _this.total ? 1 : page + 1;
211                 var preP = pre - 1 >= 1 ? pre-1 : _this.total;
212                 var nextN = next + 1 > _this.total ? 1 : next+1;
213                 if(pre != _this.pageNow && next != _this.pageNow){
214                     var nowpre = _this.pageNow > 1 ? _this.pageNow -1: _this.total;
215                     var nownext = _this.pageNow == _this.total ? 1 : _this.pageNow + 1;
216                     _this.parent.find(".contentHolderUnit:nth-child("+nowpre+")").animate({width:'0px',height:'0px', opacity: 0, left:_this.options.width/2+'px', zIndex:0, marginTop: '135px'}, t);
217                     _this.parent.find(".contentHolderUnit:nth-child("+_this.pageNow+")").animate({width:'0px',height:'0px', opacity: 0, left:_this.options.width/2+'px', zIndex:0, marginTop: '135px'}, t);
218                     _this.parent.find(".contentHolderUnit:nth-child("+nownext+")").animate({width:'0px',height:'0px', opacity: 0, left:_this.options.width/2+'px', zIndex:0, marginTop: '135px'}, t);
219                 }
220                 if(dir == 'left'){                    
221                     _this.parent.find(".contentHolderUnit:nth-child("+_this.pageNow+")").css({zIndex: 0});
222                 
223                     
224                     _this.parent.find(".contentHolderUnit:nth-child("+pre+") .elementOverlay").css({opacity:0.4});
225                     _this.parent.find(".contentHolderUnit:nth-child("+pre+")").animate({opacity: 1, left: _this.preLeft+'px', height: '450', width: '530px', zIndex: 2, marginTop: '23px'}, t);
226                     _this.parent.find(".contentHolderUnit:nth-child("+pre+") .leftShadow").css({opacity:0});
227                     _this.parent.find(".contentHolderUnit:nth-child("+pre+") .rightShadow").css({opacity:0});
228                     
229                     
230                     _this.parent.find(".contentHolderUnit:nth-child("+page+")").css({zIndex: 3});
231                     _this.parent.find(".contentHolderUnit:nth-child("+page+")").animate({opacity: 1, left: _this.pageNowLeft+'px', height: '450', width: '640px', zIndex: 3, marginTop: '0'}, t);
232                     _this.parent.find(".contentHolderUnit:nth-child("+page+") .elementOverlay").css({opacity:0});
233                     _this.parent.find(".contentHolderUnit:nth-child("+page+") .leftShadow").css({opacity:1});
234                     _this.parent.find(".contentHolderUnit:nth-child("+page+") .rightShadow").css({opacity:1});
235                     
236                     _this.parent.find(".contentHolderUnit:nth-child("+next+")").css({opacity: 0, left: _this.nextNLeft+'px', height: '450', width: '530px', zIndex: 2, marginTop: '85px'});
237                     _this.parent.find(".contentHolderUnit:nth-child("+next+")").animate({opacity: 1, left: _this.nextLeft+'px', height: '450', width:"530px", zIndex: 2, marginTop: '23px'}, t);
238                     _this.parent.find(".contentHolderUnit:nth-child("+next+") .elementOverlay").css({opacity:0.4});
239                     _this.parent.find(".contentHolderUnit:nth-child("+next+") .leftShadow").css({opacity:0});
240                     _this.parent.find(".contentHolderUnit:nth-child("+next+") .rightShadow").css({opacity:0});
241                     _this.parent.find(".contentHolderUnit:nth-child("+preP+")").css({zIndex:0});
242                     _this.parent.find(".contentHolderUnit:nth-child("+preP+")").animate({width:'530px',height:'350px', opacity: 0, left:_this.preNLeft+'px', zIndex:0, marginTop: '85px'},t, "", function(){_this.locked=false;});
243                     
244                     
245                 }else{
246                     _this.parent.find(".contentHolderUnit:nth-child("+_this.pageNow+")").css({zIndex: 0});
247                     
248                     _this.parent.find(".contentHolderUnit:nth-child("+next+")").css({zIndex:2});
249                     _this.parent.find(".contentHolderUnit:nth-child("+next+")").animate({opacity: 1, left: _this.nextLeft+'px', height: '450', width: '530px', zIndex: 2, marginTop: '23px'}, t);
250                     _this.parent.find(".contentHolderUnit:nth-child("+next+") .elementOverlay").css({opacity:0.4});
251                     _this.parent.find(".contentHolderUnit:nth-child("+next+") .leftShadow").css({opacity:0});
252                     _this.parent.find(".contentHolderUnit:nth-child("+next+") .rightShadow").css({opacity:0});
253                     
254                     _this.parent.find(".contentHolderUnit:nth-child("+page+")").css({zIndex: 3}, t);
255                     _this.parent.find(".contentHolderUnit:nth-child("+page+")").animate({opacity: 1, left: _this.pageNowLeft+'px', height: '450', width: '640px', zIndex: 3, marginTop: '0px'}, t);
256                     _this.parent.find(".contentHolderUnit:nth-child("+page+") .elementOverlay").css({opacity:0});
257                     _this.parent.find(".contentHolderUnit:nth-child("+page+") .leftShadow").css({opacity:1});
258                     _this.parent.find(".contentHolderUnit:nth-child("+page+") .rightShadow").css({opacity:1});
259                     
260                     _this.parent.find(".contentHolderUnit:nth-child("+pre+")").css({opacity: 0, left: _this.preNLeft+'px', height: '450', width: '530px', zIndex: 2, marginTop: '85px'});
261                     _this.parent.find(".contentHolderUnit:nth-child("+pre+")").animate({opacity: 1, left: _this.preLeft+'px', height: '450', width: '530px', zIndex: 2, marginTop: '23px'}, t);
262                     _this.parent.find(".contentHolderUnit:nth-child("+pre+") .elementOverlay").css({opacity:0.4});
263                     _this.parent.find(".contentHolderUnit:nth-child("+pre+") .leftShadow").css({opacity:0});
264                     _this.parent.find(".contentHolderUnit:nth-child("+pre+") .rightShadow").css({opacity:0});
265                     
266                     _this.parent.find(".contentHolderUnit:nth-child("+nextN+")").css({zIndex:0});
267                     _this.parent.find(".contentHolderUnit:nth-child("+nextN+")").animate({width:'530px',height:'450', opacity: 0, left:_this.nextNLeft+'px', zIndex:0, marginTop: '85px'}, t, "",function(){_this.locked=false;});
268                 }
269             
270                 _this.pageNow = page;
271                 _this.initBottomNav();
272             };
273             
274             run(page, dir,_this.options.speed);                    
275             
276         }
277         
278     };
279 
280     postercarousel.options = {
281         offsetPages : 3,//預設可視最大條數
282         direct : "left",//滾動的方向
283         initPage : 1,//預設當前顯示第幾條
284         className : "postercarousel",//最外層樣式
285         autoWidth : false,//預設不用設置寬
286         // width : 100,//最外層寬,需要使用的時候在傳,預設由程式自動判斷
287         height :450,//最外層高  
288         delay : 3000,//滾動間隔(毫秒)
289         speed : 500 //滾動速度毫秒
290     };
291     
292     window.postercarousel = postercarousel;
293 })(jQuery)

相關vue組件代碼以及使用方式:

代碼如下:

  1 <template>
  2   <div class="broadcast">
  3     <div class="htmleaf-container">
  4       <div class="htmleaf-content">
  5         <div id="postercarousel" style="margin:40px auto 0 auto;"></div>
  6       </div>
  7     </div>
  8   </div>
  9 </template>
 10 <script>
 11 import "jQuery";
 12 import "@/static/js/postercarousel";
 13 export default {
 14   data() {
 15     return {};
 16   },
 17   mounted() {
 18     this.initposter();
 19     console.log(postercarousel);
 20     21   },
 22   methods: {
 23     initposter() {
 24       var postercarousel = new postercarousel(
 25         "postercarousel",
 26         { className: "postercarousel" },
 27         [
 28           {
 29             // img: require("../assets/callme.png"),
 30             img: 'http://occe.ospc.cn/upload/2016-01-18/145309107223576.jpg',
 31             // url: "http://www.htmleaf.com/"
 32           },
 33           {
 34             // img: require("../assets/liaojiewaibao.png"),
 35             img: "http://occe.ospc.cn/upload/2016-01-17/145302166917282.jpg",
 36             // url: "http://www.htmleaf.com/"
 37           },
 38           {
 39             img: require("../assets/ruhui.png"),
 40             img: "http://occe.ospc.cn/upload/2016-01-17/14530216405007.png",
 41             // url: "http://www.htmleaf.com/"
 42           },
 43           {
 44             // img: require("../assets/callme.png"),
 45             img: "http://occe.ospc.cn/upload/2016-01-18/145309108911041.jpg",
 46             // url: "http://www.htmleaf.com/"
 47           },
 48         ]
 49       );
 50     }
 51   }
 52 };
 53 </script>
 54 <style lang="scss">
 55 .broadcast {
 56   /* postercarousel */
 57   #postercarousel {
 58     width: 100% !important;
 59     height: 450px;
 60   }
 61   .postercarousel {
 62     position: relative;
 63     height: 100%;
 64     width: 100% !important;
 65   }
 66   .postercarousel img {
 67     max-width: 100%;
 68     max-height: 100%;
 69     border: 0 none;
 70     background: #888;
 71     display: block;
 72   }
 73   .postercarousel .contentHolder {
 74     position: relative;
 75     overflow: hidden;
 76   }
 77   .postercarousel .contentHolderUnit {
 78     cursor: pointer;
 79     position: absolute;
 80     width: 83% !important;
 81     height: 450px;
 82   }
 83   .postercarousel .contentHolderUnit a.elementLink {
 84     display: block;
 85     overflow: hidden;
 86     z-index: 3;
 87     position: absolute;
 88     left: 0;
 89     right: 0;
 90     width: 100%;
 91     height: 100%;
 92   }
 93   .postercarousel .contentHolderUnit img {
 94     width: 100%;
 95     height: 100%;
 96     display: block;
 97   }
 98   .postercarousel .contentHolderUnit .elementTitle {
 99   }
100   .postercarousel .contentHolderUnit .elementOverlay {
101     z-index: 1;
102     position: absolute;
103     top: 0;
104     left: 0;
105     background: #000;
106     width: 100%;
107     height: 100%;
108     opacity: 0;
109     filter: opacity=0;
110   }
111   .postercarousel .contentHolderUnit .leftShadow {
112     position: absolute;
113     top: 23px;
114     left:-250px;
115     // width: 250px;
116     height:327px;
117     background: url("../assets/images/leftShadow.png") no-repeat;
118     background-size: contain;
119   }
120   .postercarousel .contentHolderUnit .rightShadow {
121     position: absolute;
122     top: 23px;
123     right:134px;
124     height: 327px;
125     background: url("../assets/images/rightShadow.png") no-repeat;
126     background-size: contain;
127   }
128   .postercarousel .bannerControls {
129   }
130   .postercarousel .leftNav,
131   .postercarousel .rightNav {
132     cursor: pointer;
133     z-index: 10;
134     position: absolute;
135     top: 60%;
136     width: 45px;
137     height: 45px;
138     margin-top: -43px;
139   }
140   .postercarousel .leftNav {
141     left: 7px;
142     background: url("../assets/images/1.png") no-repeat;
143     _background: none;
144     _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="@/assets/images/slide_prev_btn.png");
145   }
146   .postercarousel .rightNav {
147     right: 7px;
148     background: url("../assets/images/2.png") no-repeat;
149     _background: none;
150     _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="@/assets/images/slide_next_btn.png");
151   }
152   .postercarousel .leftNav:hover {
153   }
154   .postercarousel .rightNav:hover {
155   }
156   .postercarousel .bottomNav {
157     z-index: 140;
158     position: absolute;
159     width: 100%;
160     height: 10px;
161     margin-top: 400px;
162     padding: 10px 0 0;
163     text-align: center;
164   }
165   .postercarousel .bottomNavButtonOFF {
166     cursor: pointer;
167     overflow: hidden;
168     display: inline-block;
169     *display: inline;
170     *zoom: 1;
171     width: 10px;
172     height: 10px;
173     margin: 0 5px;
174     vertical-align: top;
175     -webkit-border-radius: 5px;
176     -moz-border-radius: 5px;
177     border-radius: 5px;
178     background: #c3c3c3;
179   }
180   .postercarousel .bottomNavButtonOFF:hover {
181     background: #aaa;
182   }
183   .postercarousel .bottomNavButtonON,
184 
              
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • js高級裡面原型鏈對於新手來說並不友好,總的來說就是 任何函數都有自己的原型對象(prototype),任何實例對象都__proto__指向構造函數的原型 先來個最簡單的原型三角關係 var fn = new Fn(); 實例對象不能直接訪問構造函數而是通過訪問構造函數的原型間接訪問構造函數 現在直 ...
  • 直接上代碼 //封裝的ajax函數 // 傳一個對象,所有要用的參數都在對象中 因為不寫對象 實參列表個數太多,所以像jq一樣,調用ajax也是把對象當實際參數傳進去 // type 請求方式 預設get // url 請求地址 這個必須要有,沒有直接 return 後面都不需要判斷 // asyn ...
  • 本文作為webpack小白入門文章,會詳細地介紹webpack的用途、具體的安裝步驟、註意事項、一些基本的配置項,並且會以一個具體的項目實例來介紹如何使用webpack。另外,本文會簡單地介紹一些最新的webpack4在安裝、使用中需要註意的要點。 ...
  • 前言 在工作中我們經常會遇到,文字過多,需要用省略號,並且滑鼠hover的時候 還需要 顯示全部的文字的需求。 正文 如何得知這個是否溢出呢?關鍵詞:clientWidth 和scrollWidth: 代碼奉上: 重點坑: 有省略號的標簽,我們使用了overflow:hidden來實現了,那麼這個就 ...
  • 數學對象 JavaScript中提供了math對象,math對象包含一些常用的屬相和方法。Math對象與Array對象、String對象、Data對象不同,沒有構造函數,因此不能創建Math對象。可直接通過Math對象 . 屬性名或者Math對象 . 方法名調用。 Math對象的屬性 Math對象的 ...
  • 效果如圖,通過定位放兩張背景圖,外層的放灰色的5顆星圖,內層的也是,寬度根據不同級別來展示,從而實現, star_1 ,代表半顆星,star_2 代表1顆星,以此類推,即預設比如2.5顆星乘2就是class的尾碼數字,以此可以動態展示 要註意這個星星預設為16px*16px,間距5px,展示的星星寬 ...
  • 一、CSS CSS(cascading style sheet,層疊樣式表)定義如何顯示HTML元素。 當瀏覽器讀到一個樣式表,它會按照這個樣式表來對文檔進行格式化(渲染)。 1、CSS語法 每個CSS樣式由兩個部分組成:選擇器 + 聲明(屬性、屬性值) 每個聲明之後加;分號結束! 2、CSS註釋 ...
  • css樣式佈局時, 背景圖,外盒子,內圖片, 盒子的寬100%; 不能將高度寫死, 希望高度跟隨設備的寬而定: 外層相對定位,高度為零,padding-top:100%; 內層絕對定位,寬高100%,將外層撐開。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...