整合營銷服務(wù)商

          電腦端+手機(jī)端+微信端=數(shù)據(jù)同步管理

          免費(fèi)咨詢熱線:

          HTML5特效庫 Canvas 發(fā)光loading動畫特效源碼

          果圖

          各位朋友,大家好!

          今天給大家?guī)淼氖牵珻anvas 發(fā)光loading動畫特效源碼

          有想要文件版源碼的,可以私聊小編,小編挨個發(fā)送!

          廢話不多說,上源碼!

          JS:

          /* super inefficient right now, could be improved */

          var c = document.getElementById('c'),

          ctx = c.getContext('2d'),

          cw = c.width = 1000,

          ch = c.height = 600,

          rand = function(a,b){return ~~((Math.random()*(b-a+1))+a);},

          dToR = function(degrees){

          return degrees * (Math.PI / 180);

          },

          circle = {

          x: (cw / 2) + 5,

          y: (ch / 2) + 22,

          radius: 90,

          speed: 2,

          rotation: 0,

          angleStart: 270,

          angleEnd: 90,

          hue: 220,

          thickness: 18,

          blur: 25

          },

          particles = [],

          particleMax = 100,

          updateCircle = function(){

          if(circle.rotation < 360){

          circle.rotation += circle.speed;

          } else {

          circle.rotation = 0;

          }

          },

          renderCircle = function(){

          ctx.save();

          ctx.translate(circle.x, circle.y);

          ctx.rotate(dToR(circle.rotation));

          ctx.beginPath();

          ctx.arc(0, 0, circle.radius, dToR(circle.angleStart), dToR(circle.angleEnd), true);

          ctx.lineWidth = circle.thickness;

          ctx.strokeStyle = gradient1;

          ctx.stroke();

          ctx.restore();

          },

          renderCircleBorder = function(){

          ctx.save();

          ctx.translate(circle.x, circle.y);

          ctx.rotate(dToR(circle.rotation));

          ctx.beginPath();

          ctx.arc(0, 0, circle.radius + (circle.thickness/2), dToR(circle.angleStart), dToR(circle.angleEnd), true);

          ctx.lineWidth = 2;

          ctx.strokeStyle = gradient2;

          ctx.stroke();

          ctx.restore();

          },

          renderCircleFlare = function(){

          ctx.save();

          ctx.translate(circle.x, circle.y);

          ctx.rotate(dToR(circle.rotation+185));

          ctx.scale(1,1);

          ctx.beginPath();

          ctx.arc(0, circle.radius, 30, 0, Math.PI *2, false);

          ctx.closePath();

          var gradient3 = ctx.createRadialGradient(0, circle.radius, 0, 0, circle.radius, 30);

          gradient3.addColorStop(0, 'hsla(330, 50%, 50%, .35)');

          gradient3.addColorStop(1, 'hsla(330, 50%, 50%, 0)');

          ctx.fillStyle = gradient3;

          ctx.fill();

          ctx.restore();

          },

          renderCircleFlare2 = function(){

          ctx.save();

          ctx.translate(circle.x, circle.y);

          ctx.rotate(dToR(circle.rotation+165));

          ctx.scale(1.5,1);

          ctx.beginPath();

          ctx.arc(0, circle.radius, 25, 0, Math.PI *2, false);

          ctx.closePath();

          var gradient4 = ctx.createRadialGradient(0, circle.radius, 0, 0, circle.radius, 25);

          gradient4.addColorStop(0, 'hsla(30, 100%, 50%, .2)');

          gradient4.addColorStop(1, 'hsla(30, 100%, 50%, 0)');

          ctx.fillStyle = gradient4;

          ctx.fill();

          ctx.restore();

          },

          createParticles = function(){

          if(particles.length < particleMax){

          particles.push({

          x: (circle.x + circle.radius * Math.cos(dToR(circle.rotation-85))) + (rand(0, circle.thickness*2) - circle.thickness),

          y: (circle.y + circle.radius * Math.sin(dToR(circle.rotation-85))) + (rand(0, circle.thickness*2) - circle.thickness),

          vx: (rand(0, 100)-50)/1000,

          vy: (rand(0, 100)-50)/1000,

          radius: rand(1, 6)/2,

          alpha: rand(10, 20)/100

          });

          }

          },

          updateParticles = function(){

          var i = particles.length;

          while(i--){

          var p = particles[i];

          p.vx += (rand(0, 100)-50)/750;

          p.vy += (rand(0, 100)-50)/750;

          p.x += p.vx;

          p.y += p.vy;

          p.alpha -= .01;

          if(p.alpha < .02){

          particles.splice(i, 1)

          }

          }

          },

          renderParticles = function(){

          var i = particles.length;

          while(i--){

          var p = particles[i];

          ctx.beginPath();

          ctx.fillRect(p.x, p.y, p.radius, p.radius);

          ctx.closePath();

          ctx.fillStyle = 'hsla(0, 0%, 100%, '+p.alpha+')';

          }

          },

          clear = function(){

          ctx.globalCompositeOperation = 'destination-out';

          ctx.fillStyle = 'rgba(0, 0, 0, .1)';

          ctx.fillRect(0, 0, cw, ch);

          ctx.globalCompositeOperation = 'lighter';

          }

          loop = function(){

          clear();

          updateCircle();

          renderCircle();

          renderCircleBorder();

          renderCircleFlare();

          renderCircleFlare2();

          createParticles();

          updateParticles();

          renderParticles();

          }

          /* Append Canvas */

          //document.body.appendChild(c);

          /* Set Constant Properties */

          ctx.shadowBlur = circle.blur;

          ctx.shadowColor = 'hsla('+circle.hue+', 80%, 60%, 1)';

          ctx.lineCap = 'round'

          var gradient1 = ctx.createLinearGradient(0, -circle.radius, 0, circle.radius);

          gradient1.addColorStop(0, 'hsla('+circle.hue+', 60%, 50%, .25)');

          gradient1.addColorStop(1, 'hsla('+circle.hue+', 60%, 50%, 0)');

          var gradient2 = ctx.createLinearGradient(0, -circle.radius, 0, circle.radius);

          gradient2.addColorStop(0, 'hsla('+circle.hue+', 100%, 50%, 0)');

          gradient2.addColorStop(.1, 'hsla('+circle.hue+', 100%, 100%, .7)');

          gradient2.addColorStop(1, 'hsla('+circle.hue+', 100%, 50%, 0)');

          /* Loop It, Loop It Good */

          setInterval(loop, 16);

          CSS:

          body {

          background: #000;

          }

          hotcut是適用于Windows,Mac和Linux的免費(fèi),開源,跨平臺視頻編輯器。主要功能包括對多種格式的支持;無需導(dǎo)入,意味著本地時間線編輯;Blackmagic Design支持輸入和預(yù)覽監(jiān)視;和分辨率支持到4k。

          主要功能介紹如下:(文未附下載地址及入門教程視頻)

          多格式支持

          多格式支持

          • FFmpeg支持最新的音頻和視頻格式
          • 支持流行的圖像格式,例如BMP,GIF,JPEG,PNG,SVG,TGA,TIFF,WebP以及圖像序列
          • 無需導(dǎo)入-本機(jī)時間軸編輯
          • 多種格式的精確幀搜索
          • 多種格式的時間軸:在項目中混合和匹配分辨率和幀速率
          • 網(wǎng)絡(luò)攝像頭捕獲
          • 音頻捕捉
          • 支持4K分辨率
          • 網(wǎng)絡(luò)流播放(HTTP,HLS,RTMP,RTSP,MMS,UDP)
          • Frei0r視頻生成器插件(例如,彩條和等離子)
          • 顏色,文本,噪聲和計數(shù)器生成器
          • EDL(CMX3600編輯決策列表)導(dǎo)出
          • 將單幀導(dǎo)出為圖像或視頻導(dǎo)出為圖像序列
          • 具有Alpha通道的視頻文件-讀寫

          音頻功能

          音頻功能

          • 音頻范圍:響度,峰值計,波形,頻譜分析儀
          • 音量控制
          • 音頻濾波器:
            平衡,低音和高音,帶通,壓縮器,復(fù)制通道,延遲,下混音,擴(kuò)展器,增益,高通,限制器,低通,噪聲門,歸一化:一遍,歸一化:兩遍,陷波,聲像,音高,混響,交換通道
          • 所有軌道的音頻混合
          • 在時間軸上使用易于使用的推子控件將音頻淡入和淡出和淡入和淡出黑色
          • 通過在時間軸的同一軌道上重疊拍攝,淡入淡出的音頻和視頻可輕松解決過渡問題
          • JACK傳輸同步
          • 音調(diào)發(fā)生器
          • 立體聲,單聲道和5.1環(huán)繞聲


          視頻特效

          視頻特效

          • 跨視頻軌道的視頻合成
          • HTML5(無音頻和視頻)作為視頻源和過濾器
          • 3向(陰影,中點(diǎn),高光)色輪,用于色彩校正和分級
          • 滴管工具選擇中性色以實(shí)現(xiàn)白平衡
          • 去隔行
          • 自動旋轉(zhuǎn)
          • 在時間軸上使用易于使用的推子控件將音頻淡入/淡出和從黑色淡入視頻
          • 視頻擦除過渡:
            條形圖,谷倉門,框,時鐘(徑向),對角線,虹膜,矩陣和自定義漸變圖像
          • 跟蹤合成/混合模式:
            無,覆蓋,添加,飽和,乘法,屏幕,覆蓋,變暗,減淡,加深,加深,弱光,柔和,差異,排除,HSL色相,HSL飽和度,HSL顏色,HSL亮度。
          • 視頻過濾器:
            Alpha通道:調(diào)整,Alpha通道:視圖,音頻舞曲可視化,音頻光可視化,音頻頻譜可視化,音頻波形可視化,混合模式,模糊:框,模糊:指數(shù),模糊:高斯,模糊:低通,亮度,波動,色度保持,色度鍵:高級,色度鍵:簡單,對比度,顏色分級,角釘,裁切:源,裁切:圓形,裁切:矩形,扭曲,抖動,彈性刻度,翻轉(zhuǎn),小故障,發(fā)光,漸變,網(wǎng)格,半色調(diào),色相/亮度/飽和度,顏色反轉(zhuǎn),按鍵溢出:高級,按鍵溢出:簡單,鏡頭校正,色階,3D LUT,蒙版:應(yīng)用,蒙版:來自文件,蒙版:簡單形狀,鏡子,馬賽克,緊張,無同步,噪點(diǎn):快速,噪點(diǎn):關(guān)鍵幀,舊膠片:灰塵,舊膠片:顆粒,舊膠片:投影機(jī),舊膠片:刮擦,舊膠片:Technocolor,不透明性,海報,降低噪音:HQ3DN,降低噪音:智能模糊,RGB移位,旋轉(zhuǎn)和縮放,Rutt-Etra-Izer,飽和度,掃描線,棕褐色調(diào),銳化,大小和位置,素描,除斑劑,穩(wěn)定,漩渦,文本:3D,文本:簡單,文本:HTML,閾值,計時器,小徑,眩暈,小插圖,預(yù)乘Alpha,波形,白平衡智能模糊,RGB移位,旋轉(zhuǎn)和縮放,Rutt-Etra-Izer,飽和度,掃描線,棕褐色調(diào),銳化,大小和位置,草圖,去污劑,穩(wěn)定化,旋流,文本:3D,文本:簡單,文本:HTML ,閾值,計時器,軌跡,眩暈,小插圖,預(yù)乘Alpha,波形,白平衡智能模糊,RGB移位,旋轉(zhuǎn)和縮放,Rutt-Etra-Izer,飽和度,掃描線,棕褐色調(diào),銳化,大小和位置,草圖,去污劑,穩(wěn)定化,旋流,文本:3D,文本:簡單,文本:HTML ,閾值,計時器,軌跡,眩暈,小插圖,預(yù)乘Alpha,波形,白平衡
          • 音頻/視頻片段的速度效果
          • 反轉(zhuǎn)剪輯
          • 視頻范圍:直方圖,RGB游行,RGB波形,波形,矢量示波器和縮放
          • 文本的標(biāo)題模板:HTML過濾器


          編輯功能

          編輯功能

          • 在帶有源代碼選項的源剪輯播放器或時間軸上進(jìn)行修剪
          • 易于使用的剪切,復(fù)制和粘貼操作
          • 在時間軸上追加,插入,覆蓋,提升和波紋刪除編輯
          • 三點(diǎn)編輯
          • 隱藏,靜音和鎖定軌道控件
          • 具有縮略圖和波形的多軌時間線
          • 無限撤消和重做播放列表編輯,包括歷史記錄視圖
          • 創(chuàng)建,播放,編輯,保存,加載,編碼和流式傳輸MLT XML項目(具有自動保存)
          • 將修剪的剪輯保存并加載為MLT XML文件
          • 加載并播放復(fù)雜的MLT XML文件作為剪輯
          • 從文件管理器拖放文件
          • 擦洗和運(yùn)輸控制
          • 過濾器參數(shù)的關(guān)鍵幀
          • 從視頻剪輯中分離音頻
          • 大多數(shù)過濾器和導(dǎo)出的預(yù)設(shè)-提供和用戶創(chuàng)建
          • 按名稱或創(chuàng)建/錄制日期對播放列表進(jìn)行排序
          • 在播放列表和時間軸中多選項目

          • 為剪輯創(chuàng)建自定義名稱,并輸入有關(guān)它的注釋。


          跨平臺支持

          跨平臺和編解碼器獨(dú)立

          • 跨平臺支持:在Windows,Linux和macOS上可用)
          • 獨(dú)立于編解碼器,因此不依賴系統(tǒng)編解碼器
          • 可以從外部驅(qū)動器作為便攜式應(yīng)用程序運(yùn)行
          • 用戶界面翻譯:阿拉伯語,加泰羅尼亞語,中文,捷克語,丹麥語,荷蘭語,英語,愛沙尼亞語,芬蘭語,法語,蓋爾語,加利西亞語,德語,希臘語,匈牙利語,意大利語,日語,韓語,尼泊爾語,挪威語Bokm?l,挪威語Nynorsk,Occitan,波蘭語,葡萄牙文,俄文,斯洛伐克文,斯洛文尼亞文,西班牙文,瑞典文,臺灣文,泰文,土耳其文,烏克蘭文(并非全部100%,但您可以提供 幫助
          • 具有作業(yè)控制的批處理編碼
          • 借助FFmpeg,可以將各種格式和編解碼器編碼/轉(zhuǎn)碼
          • 流(編碼為IP)文件和任何捕獲源
          • 視頻質(zhì)量測量(PSNR和SSIM)
          • 對音頻/視頻文件執(zhí)行完整性檢查
          • 查看有關(guān)音頻/視頻文件的詳細(xì)信息

          軟件下載地址:https://www.shotcut.org/download/

          入門視頻教程:https://www.bilibili.com/video/av74164910/

          會不定期分享一些最新軟件工具,喜歡我的朋友,請關(guān)注我!

          果圖

          各位媛猿大家好

          今天給大家?guī)淼氖?CSS3 3D圖片相冊特效

          大家可以按照自己的意愿 修改成喜歡的樣子!

          想要文件版源碼的,請加窮581549454

          廢話不多說,上源碼!

          CSS源碼:

          @charset "utf-8";

          /*科e互聯(lián)特效基本框架CSS*/

          body, ul, dl, dd, dt, ol, li, p, h1, h2, h3, h4, h5, h6, textarea, form, select, fieldset, table, td, div, input {margin:0;padding:0;-webkit-text-size-adjust: none}

          h1, h2, h3, h4, h5, h6{font-size:12px;font-weight:normal}

          body>div{margin:0 auto}

          div {text-align:left}

          a img {border:0}

          body { color: #333; text-align: center; font: 12px "微軟雅黑"; }

          ul, ol, li {list-style-type:none;vertical-align:0}

          a {outline-style:none;color:#535353;text-decoration:none}

          a:hover { color: #D40000; text-decoration: none}

          .clear{height:0; overflow:hidden; clear:both}

          .button {display: inline-block;zoom: 1; *display: inline;vertical-align: baseline;margin: 0 2px;outline: none;cursor: pointer;text-align: center;text-decoration: none;font: 14px/100% Arial, Helvetica, sans-serif;padding:0.25em 0.6em 0.3em;text-shadow: 0 1px 1px rgba(0,0,0,.3);-webkit-border-radius: .5em; -moz-border-radius: .5em;border-radius: .5em;-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);box-shadow: 0 1px 2px rgba(0,0,0,.2);

          }

          .red {color: #faddde;border: solid 1px #980c10;background: #d81b21;background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#A51715));background: -moz-linear-gradient(top, #ed1c24, #A51715);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');

          }

          .red:hover { background: #b61318; background: -webkit-gradient(linear, left top, left bottom, from(#c9151b), to(#a11115)); background: -moz-linear-gradient(top, #c9151b, #a11115); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9151b', endColorstr='#a11115'); color:#fff;}

          .red:active {color: #de898c;background: -webkit-gradient(linear, left top, left bottom, from(#aa1317), to(#ed1c24));background: -moz-linear-gradient(top, #aa1317, #ed1c24);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa1317', endColorstr='#ed1c24');}

          .cor_bs,.cor_bs:hover{color:#ffffff;}

          .keBody{background:url(../images/bodyBg.jpg) repeat #333;}

          .keTitle{height:100px; line-height:100px; font-size:30px; font-family:'微軟雅黑'; color:#FFF; text-align:center; background:url(../images/bodyBg3.jpg) repeat-x bottom left; font-weight:normal}

          .kePublic{background:#FFF; padding:50px;}

          .keBottom{color:#FFF; padding-top:25px; line-height:28px; text-align:center; font-family:'微軟雅黑'; background:url(../images/bodyBg2.jpg) repeat-x top left; padding-bottom:25px}

          .keTxtP{font-size:16px; color:#ffffff;}

          .keUrl{color:#FFF; font-size:30px;}

          .keUrl:hover{ text-decoration: underline; color: #FFF; }

          .mKeBanner,.mKeBanner div{text-align:center;}

          /*科e互聯(lián)特效基本框架CSS結(jié)束,應(yīng)用特效時,以上樣式可刪除*/

          .warper{ width: 860px; height: 300px; border: 2px solid #efefef; margin: 0 auto; padding: 3px 3px 0px 0px; }

          #wowslider-container1 { zoom: 1; position: relative; max-width: 716px; float:right; z-index: 90 }

          * html #wowslider-container1 { width: 716px }

          #wowslider-container1 .ws_images ul { position: relative; width: 10000%; height: auto; left: 0; list-style: none; margin: 0; padding: 0; border-spacing: 0; overflow: visible }

          #wowslider-container1 .ws_images ul li { width: 1%; line-height: 0; float: left; font-size: 0; padding: 0!important; margin: 0!important }

          #wowslider-container1 .ws_images { position: relative; left: 0; top: 0; width: 100%; height: 100%; overflow: hidden }

          #wowslider-container1 .ws_images a { width: 100%; display: block; color: transparent }

          #wowslider-container1 img { max-width: none!important }

          #wowslider-container1 .ws_images img { width: 100%; border: none 0; max-width: none; padding: 0; margin: 0 }

          #wowslider-container1 a { text-decoration: none; outline: 0; border: 0 }

          #wowslider-container1 a.ws_next, #wowslider-container1 a.ws_prev { position: absolute; display: none; top: 50%; margin-top: -3.5em; z-index: 60; height: 7.1em; width: 7.1em; background-image: url(../images/arrows.png); background-size: 200% }

          #wowslider-container1 a.ws_next { background-position: 100% 0; right: 1em }

          #wowslider-container1 a.ws_prev { left: 1em; background-position: 0 0 }

          #wowslider-container1 a.ws_next:hover { background-position: 100% 100% }

          #wowslider-container1 a.ws_prev:hover { background-position: 0 100% }

          * html #wowslider-container1 a.ws_next, * html #wowslider-container1 a.ws_prev { display: block }

          #wowslider-container1:hover a.ws_next, #wowslider-container1:hover a.ws_prev { display: block }

          #wowslider-container1 .ws_playpause { display: none; width: 7.1em; height: 7.1em; position: absolute; top: 50%; left: 50%; margin-left: -3.5em; margin-top: -3.5em; z-index: 59; background-size: 100% }

          #wowslider-container1:hover .ws_playpause { display: block }

          #wowslider-container1 .ws_pause { background-image: url(../images/pause.png) }

          #wowslider-container1 .ws_play { background-image: url(../images/play.png) }

          #wowslider-container1 .ws_pause:hover, #wowslider-container1 .ws_play:hover { background-position: 100% 100%!important }

          #wowslider-container1 .ws-title { position: absolute; display: block; bottom: 3.5em; left: 1em; margin-right: 1em; padding: 1em .9em .9em .9em; background-color: rgba(0,0,0,0.4); color: #fff; z-index: 50; font-weight: bold; text-transform: uppercase; border-radius: .2em; -moz-border-radius: .2em; -webkit-border-radius: .2em }

          #wowslider-container1 .ws-title div { margin-top: .3em; font-size: 1.6em; line-height: 1.15em; font-weight: normal; text-transform: none; color: #fff }

          #wowslider-container1 .ws-title span { font-size: 2.4em }

          #wowslider-container1 .ws_thumbs { font-size: 0; position: absolute; overflow: auto; z-index: 70; left: -19.51%; top: 0; width: 18.72%; height: 100% }

          #wowslider-container1 .ws_thumbs img { text-decoration: none; border: 0; width: 100% }

          #wowslider-container1 .ws_thumbs a { position: relative; text-indent: -4000px; color: transparent; opacity: .85; text-decoration: none; display: inline-block; border: 0; margin-bottom: 4%; text-indent: 0; padding: 2.99%; width: 89.54%; background-color: #fff }

          #wowslider-container1 .ws_thumbs a:hover { opacity: 1 }

          #wowslider-container1 .ws_thumbs a:hover img { visibility: visible }

          #wowslider-container1 .ws_thumbs div { position: relative; width: 100% }

          #wowslider-container1 .ws_thumbs a.ws_selthumb { background-color: #bce0dd }

          #wowslider-container1 .ws_images ul { animation: wsBasic 16s infinite; -moz-animation: wsBasic 16s infinite; -webkit-animation: wsBasic 16s infinite }

          @keyframes wsBasic { 0% {

          left:-0%

          }

          12.5% {

          left:-0%

          }

          25% {

          left:-100%

          }

          37.5% {

          left:-100%

          }

          50% {

          left:-200%

          }

          62.5% {

          left:-200%

          }

          75% {

          left:-300%

          }

          87.5% {

          left:-300%

          }

          }

          @-moz-keyframes wsBasic { 0% {

          left:-0%

          }

          12.5% {

          left:-0%

          }

          25% {

          left:-100%

          }

          37.5% {

          left:-100%

          }

          50% {

          left:-200%

          }

          62.5% {

          left:-200%

          }

          75% {

          left:-300%

          }

          87.5% {

          left:-300%

          }

          }

          @-webkit-keyframes wsBasic { 0% {

          left:-0%

          }

          12.5% {

          left:-0%

          }

          25% {

          left:-100%

          }

          37.5% {

          left:-100%

          }

          50% {

          left:-200%

          }

          62.5% {

          left:-200%

          }

          75% {

          left:-300%

          }

          87.5% {

          left:-300%

          }

          }

          index:

          <!DOCTYPE HTML>

          <html>

          <head>

          <meta charset="UTF-8">

          <title>CSS3 3D圖片相冊特效 - 網(wǎng)頁特效庫 - jquery特效</title>

          <link rel='stylesheet' href='css/style.css' type='text/css' />

          <script type='text/javascript' src='js/jquery.min.js'></script>

          </head>

          <body class="keBody">

          <h1 class="keTitle">CSS3 3D圖片相冊特效</h1>

          <div class="kePublic">

          <!--效果html開始-->

          <div class="warper">

          <div id="wowslider-container1">

          <div class="ws_images">

          <ul>

          <li><a target="_blank" href="#"><img title="高級職位都在這里" src="images/bimg1.jpg" /></a></li>

          <li><a target="_blank" href="#"><img title="互聯(lián)網(wǎng)設(shè)計布道者馮鐵看診把脈" src="images/bimg2.jpg" /></a></li>

          <li><a target="_blank" href="#"><img title="顏值不高別裝“表”" src="images/bimg3.jpg" /></a></li>

          <li><a target="_blank" href="#"><img title="高級職位都在這里" src="images/bimg1.jpg" /></a></li>

          <li><a target="_blank" href="#"><img title="互聯(lián)網(wǎng)設(shè)計布道者馮鐵看診把脈" src="images/bimg2.jpg" /></a></li>

          <li><a target="_blank" href="#"><img title="顏值不高別裝“表”" src="images/bimg3.jpg" /></a></li>

          </ul>

          </div>

          <div class="ws_thumbs">

          <div>

          <a target="_blank" href="#"><img src="images/simg1.jpg" /></a>

          <a target="_blank" href="#"><img src="images/simg2.jpg" /></a>

          <a target="_blank" href="#"><img src="images/simg3.jpg" /></a>

          <a target="_blank" href="#"><img src="images/simg1.jpg" /></a>

          <a target="_blank" href="#"><img src="images/simg2.jpg" /></a>

          <a target="_blank" href="#"><img src="images/simg3.jpg" /></a>

          </div>

          </div>

          <div class="ws_shadow"></div>

          </div>

          <script type="text/javascript" src="js/slider.js"></script>

          </div>

          <!--效果html結(jié)束-->

          <div class="clear"></div>

          </div>

          <div style="text-align:center;margin:10px 0; font:normal 14px/24px 'MicroSoft YaHei'; color: #fff;">

          <p>T</p>

          </div>

          </body>

          </html>


          主站蜘蛛池模板: 午夜影院一区二区| 一区视频免费观看| 国产一区二区视频在线播放| 人妻AV一区二区三区精品| 人妻免费一区二区三区最新| 色欲AV蜜桃一区二区三| 色狠狠色噜噜Av天堂一区| 黑巨人与欧美精品一区| 国产精品视频一区麻豆| 亚洲欧美日韩中文字幕在线一区| 成人一区二区三区视频在线观看| 老熟女高潮一区二区三区| 亚洲视频一区二区三区四区| 国产91大片精品一区在线观看| 精品人妻码一区二区三区| 国偷自产一区二区免费视频| 精品无码一区二区三区亚洲桃色| 国模私拍一区二区三区| 精品一区二区三区自拍图片区| 少妇激情av一区二区| 无码人妻AⅤ一区二区三区水密桃 无码欧精品亚洲日韩一区夜夜嗨 无码毛片一区二区三区中文字幕 无码毛片一区二区三区视频免费播放 | 九九无码人妻一区二区三区| 午夜视频一区二区三区| 国内精品无码一区二区三区| 亚洲国产精品一区二区第一页 | 中文字幕aⅴ人妻一区二区| 无码日本电影一区二区网站| 日韩精品无码免费一区二区三区| 国产成人高清亚洲一区久久| 偷拍激情视频一区二区三区| 无码人妻一区二区三区在线| 色欲综合一区二区三区| 3D动漫精品啪啪一区二区下载| 亚洲国产国产综合一区首页| 亚洲av成人一区二区三区 | www一区二区三区| 日本亚洲国产一区二区三区| 午夜福利一区二区三区在线观看| 精品伦精品一区二区三区视频| 国产美女口爆吞精一区二区| 亚欧色一区W666天堂|