# com **Repository Path**: td666/com ## Basic Information - **Project Name**: com - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-07-18 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head>  
  4.     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">  
  5.     <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">  
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">  
  7.     <meta name="HandheldFriendly" content="true">  
  8.     <meta name="renderer" content="webkit">  
  9.     <meta name="format-detection" content="telephone=no">  
  10.     <title>觉得就到家色即是空-首页</title>  
  11.     <meta name="keywords" content="#"/>  
  12.     <meta name="description" content="#"/>  
  13.     <meta name="keywords" content="">  
  14.     <link href="http://ae85.cn/skin/css/style.css" rel="stylesheet" type="text/css" />  
  15.     <script src="http://ae85.cn/skin/js/baidu.js"></script>  
  16.     <link rel="stylesheet" href="http://ae85.cn/skin/css/menes.min.css">  
  17.     <script src="http://ae85.cn/skin/js/menes.js" type="text/javascript"></script>  
  18.     <script src="http://cdn.bootcss.com/jquery/1.11.2/jquery.min.js"></script>   
  19. </head>  
  20. </style>  
  21. </head>  
  22. <body>  
  23. <div id="max_box">  
  24.     <div class="logo animated fadeInUp">  
  25.         <span>官网</span>  
  26.         <img src="https://i.loli.net/2018/07/23/5b555edebc809.jpeg" alt="logo">  
  27. <body oncontextmenu="return false" onselectstart="return false">  
  28. </div>  
  29. <EMBED src="http://t.cn/RuhTnRO?mp3" autostart="true" loop="true" width="100" height="80">  
  30.     <!-- 原始颜色#5A614A -->  
  31. <style type="text/css">  
  32. a:visited {  
  33.     color: #ffffff; text-decoration: none  
  34. }  
  35. a:link {  
  36.     color: #ffffff; text-decoration: none  
  37. }  
  38. a:hover {  
  39.     color: #004eff; text-decoration: none  
  40. }  
  41. </style>  
  42. <script language="javascript">   
  43. <!--   
  44. // ------ 定义全局变量   
  45.        var theNewsNum;   
  46.     var theAddNum;   
  47.     var totalNum;   
  48.     var CurrentPosion=0;   
  49.        var theCurrentNews;   
  50.        var theCurrentLength;   
  51.        var theNewsText;   
  52.        var theTargetLink;   
  53.        var theCharacterTimeout;   
  54.        var theNewsTimeout;   
  55.        var theBrowserVersion;   
  56.        var theWidgetOne;   
  57.        var theWidgetTwo;   
  58.        var theSpaceFiller;   
  59.        var theLeadString;   
  60.        var theNewsState;   
  61.        function startTicker()   
  62.        {                  
  63. // ------ 设置初始数值   
  64.           theCharacterTimeout = 50;//字符间隔时间   
  65.           theNewsTimeout     = 3000;//新闻间隔时间   
  66.           theWidgetOne        =  "_";//新闻前面下标符1   
  67.           theWidgetTwo        =  "-";//新闻前面下标符   
  68.           theNewsState       = 1;   
  69.           //theNewsNum        = document.body.children.incoming.children.NewsNum.innerText;//新闻总条数   
  70.           //add by lin   
  71.      theNewsNum        = document.getElementById("incoming").children.AllNews.children.length;//新闻总条数   
  72.      theAddNum        = document.getElementById("incoming").children.AddNews.children.length;//补充条数   
  73.      totalNum   =theNewsNum+theAddNum;   
  74.      theCurrentNews     = 0;   
  75.           theCurrentLength    = 0;   
  76.           theLeadString       = " ";   
  77.           theSpaceFiller      = " ";   
  78.           runTheTicker();   
  79.        }   
  80. // --- 基础函数   
  81.        function runTheTicker()   
  82.        {   
  83.           if(theNewsState == 1)   
  84.           {   
  85.             if(CurrentPosion<theNewsNum){    
  86.           setupNextNews();   
  87.             }   
  88.       else{   
  89.           setupAddNews();   
  90.       }   
  91.       CurrentPosion++;   
  92.       if(CurrentPosion>=totalNum||CurrentPosion>=5) CurrentPosion=0;  //最多条数不超过5条   
  93.      }   
  94.           if(theCurrentLength != theNewsText.length)   
  95.           {   
  96.              drawNews();   
  97.           }   
  98.           else   
  99.           {   
  100.              closeOutNews();   
  101.           }   
  102.        }   
  103. // --- 跳转下一条新闻   
  104.        function setupNextNews()   
  105.        {   
  106.           theNewsState = 0;   
  107.      theCurrentNews = theCurrentNews % theNewsNum;        
  108.           theNewsText = document.getElementById("AllNews").children[theCurrentNews].children.Summary.innerText;   
  109.           theTargetLink = document.getElementById("AllNews").children[theCurrentNews].children.NewsLink.innerText;             
  110.           theCurrentLength = 0;   
  111.           document.all.hottext.href = theTargetLink;   
  112.           theCurrentNews++;   
  113.     }   
  114.        function setupAddNews()   
  115.        {   
  116.           theNewsState = 0;   
  117.      theCurrentNews = theCurrentNews % theAddNum;        
  118.           theNewsText = document.getElementById("incoming").children.AddNews.children  
  119. [theCurrentNews].children.Summary.innerText;   
  120.           theTargetLink = document.getElementById("incoming").children.AddNews.children  
  121. [theCurrentNews].children.NewsLink.innerText;             
  122.           theCurrentLength = 0;   
  123.           document.all.hottext.href = theTargetLink;   
  124.           theCurrentNews++;   
  125.     }       
  126. // --- 滚动新闻   
  127.        function drawNews()   
  128.        {   
  129.           var myWidget;          
  130.           if((theCurrentLength % 2) == 1)   
  131.           {   
  132.              myWidget = theWidgetOne;   
  133.           }   
  134.           else   
  135.           {   
  136.              myWidget = theWidgetTwo;   
  137.           }   
  138.           document.all.hottext.innerHTML = theLeadString + theNewsText.substring(0,theCurrentLength) + myWidget +   
  139. theSpaceFiller;   
  140.           theCurrentLength++;   
  141.           setTimeout("runTheTicker()", theCharacterTimeout);   
  142.        }   
  143. // --- 结束新闻循环   
  144.        function closeOutNews()   
  145.        {   
  146.           document.all.hottext.innerHTML = theLeadString + theNewsText + theSpaceFiller;   
  147.           theNewsState = 1;   
  148.           setTimeout("runTheTicker()", theNewsTimeout);   
  149.        }         
  150. window.onload=startTicker;           
  151. //-->   
  152. </script>   
  153. <!-- 一种文字颜色渐变效果的超级连接特效 -->   
  154. <script>   
  155. <!--   
  156. document.onmouseover = domouseover;   
  157. document.onmouseout = domouseout;   
  158. function domouseover() {   
  159.   if(document.all){   
  160.   srcElement = window.event.srcElement;   
  161.   if (srcElement.className.indexOf("fade") > -1) {   
  162.         var linkName = srcElement.name;   
  163.       fadein(linkName);   
  164.       }   
  165.       }   
  166. }   
  167. function domouseout() {   
  168.   if (document.all){   
  169.   srcElement = window.event.srcElement;   
  170.   if (srcElement.className.indexOf("fade") > -1) {   
  171.         var linkName = srcElement.name;   
  172.       fadeout(linkName);   
  173.       }   
  174.       }   
  175. }   
  176. function makearray(n) {   
  177.     this.length = n;   
  178.     for(var i = 1; i <= n; i++)   
  179.         this[i] = 0;   
  180.     return this;   
  181. }   
  182. hexa = new makearray(16);   
  183. for(var i = 0; i < 10; i++)   
  184.     hexa[i] = i;   
  185. hexa[10]="a"; hexa[11]="b"; hexa[12]="c";   
  186. hexa[13]="d"; hexa[14]="e"; hexa[15]="f";   
  187. function hex(i) {   
  188.     if (i < 0)   
  189.         return "00";   
  190.     else if (i > 255)   
  191.         return "ff";   
  192.     else   
  193.        return "" + hexa[Math.floor(i/16)] + hexa[i%16];}   
  194. function setbgColor(r, g, b, element) {   
  195.       var hr = hex(r); var hg = hex(g); var hb = hex(b);   
  196.       element.style.color = "#"+hr+hg+hb;   
  197. }   
  198. function fade(sr, sg, sb, er, eg, eb, step, direction, element){  
  199.     for(var i = 0; i <= step; i++){  
  200.         setTimeout("setbgColor(Math.floor(" +sr+ " *(( " +step+ " - " +i+ " )/ " +step+ " ) + " +er+ " * (" +i+ "/" +step+ ")),Math.floor(" +sg+ " * (( " +step+ " - " +i+ " )/ " +step+ " ) + " +eg+ " * (" +i+ "/" +step+ ")),Math.floor(" +sb+ " *((" +step+ "-" +i+ ")/" +step+ ") + " +eb+ " * (" +i+ "/" +step+ ")),"+element+");",i*step);   
  201.     }  
  202. }  
  203. function fadeout(element) {   
  204.              
  205.     fade(255,153,0, 0,0,0, 30, 1, element);   
  206. }   
  207. /*------------------=[fadein]=----------------------   
  208. ||Fades the text from one color to another color   ||   
  209. ||when the mouse moves over the link.              ||   
  210. ||-------------------------------------------------*/   
  211. function fadein(element) {   
  212.     fade(0,0,0, 255,153,0, 18, 1, element);   
  213. }   
  214. /*ignore this >>>>*/   
  215. function fadeIn2(id){   
  216.     fade(255,255,255, 88,118,152, 25, 1, id);   
  217. }   
  218. function fadeOut2(id){   
  219.     fade(88,118,152, 255,255,255, 29, 1, id);   
  220. }   
  221. /*<<<<< stop ignoring =)*/   
  222. // -->   
  223. </script>   
  224. <div id="visible" class="ad_box animated fadeInUp">  
  225. <font style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis;" color="#FF0000">◄〉公告:<a class="fade" id="hottext" href="http://tdtd.coding.me/index.html/" target="_blank" name="a"></a></font></div>  
  226. <div id="incoming" style="display: none;white-space:nowrap; overflow:hidden; text-overflow:ellipsis;" class="animated fadeInUp">  
  227. <div id="AllNews">  
  228. <div id="1">  
  229. <div id="Summary">①、TD网站更新UI5.0!</div>  
  230. <div id="NewsLink"> #</div></div>  
  231. <div id="2">  
  232. <div id="Summary">②、地图中心也在更新</div>  
  233. <div id="NewsLink">/dt</div></div>  
  234. <div id="3">  
  235. <div id="Summary">③、增加TD商城</div>  
  236. <div id="NewsLink">#</div></div>  
  237. <div id="4">  
  238. <div id="Summary">④、TD视频改为优酷啦!</div>  
  239. <div id="NewsLink">#</div></div>  
  240. <div id="5">  
  241. <div id="Summary">⑤、等待更新公告......</div>  
  242. <div id="NewsLink">#</div></div></div>  
  243. <div id="AddNews"></div></div>  
  244.     <panel class="ad_box animated fadeInUp">  
  245.         <div class="pic-box">  
  246.             <ul>  
  247.                 <li id="fuck5h"><a href="/dt" target="new"><img id="fuck5hous" class="bigpic" src="https://i.loli.net/2018/07/23/5b55212b98a40.jpeg" /></a></li>  
  248.                 <li id="fuck5h"><a href="https://www.bslyun.com/sby8vre0tLTE5ODM2NC0tMA%3D" target="new"><img class="bigpic" src="https://i.loli.net/2018/07/23/5b55888ced970.jpeg" /></a></li>  
  249.                 <li id="fuck5h"><a href="/game" target="new"><img class="bigpic" src="https://i.loli.net/2018/07/23/5b5542d1dca71.jpeg" /></a></li>  
  250.                 <li id="fuck5h"><a href="#" target="new"><img class="bigpic" src="https://i.loli.net/2018/07/23/5b55894e61d47.jpeg" /></a></li>  
  251.             </ul>  
  252.         </div>  
  253.     </panel>  
  254.     <script src="http://ae85.cn/skin/js/main.js" type="text/javascript"></script>  
  255.     <div class="ad_box animated fadeInUp">  
  256.         <table>  
  257.         <tbody>  
  258.             <tr>  
  259.             <td><a href="http://v.douyin.com/JKpt4P/"><img src="https://i.loli.net/2018/07/23/5b553c247b1fe.jpeg" alt=""></a></td>  
  260.             <td><a href="https://adl.netease.com/d/g/mc/c/pe"><img src="https://i.loli.net/2018/07/23/5b553e4241b31.jpeg" alt=""></a></td>  
  261.             </tr>  
  262.             <tr>  
  263.             <td class="animated fadeInUp"><a href="https://adl.netease.com/d/g/mc/c/pe"><img src="https://i.loli.net/2018/07/23/5b55400c67baf.jpeg" alt=""></a></td>  
  264.             <td class="animated fadeInUp"><a href="http://td.853260.com"><img src="https://i.loli.net/2018/07/23/5b5568e773d42.jpeg" alt=""></a></td>  
  265.             </tr>  
  266.   <!-- <tr>  
  267.             <td colspan="2"><p><a href="/box/iPhone.html">调试</a></p></td>  
  268.      </tr>   
  269.  -->   
  270.    
  271.         </tbody>  
  272.         </table>  
  273.     </div>  
  274.     <div class="body_box footer_tb animated fadeInUp ">  
  275.         <table>  
  276.         <tbody>  
  277.             <tr>  
  278.             <td><a href="/dt">地图商城</a></td>  
  279.             <td><a href="/pf">皮肤商城</a></td>  
  280.             </tr>  
  281.             <tr class="animated fadeInUp">  
  282.             <td><a href="http://td.853260.com">TD商店</a></td>  
  283.             <td><a href="/game">TDgames</a></td>  
  284.             </tr>  
  285.             <tr class="animated fadeInUp">  
  286.             <td class="animated fadeInUp"><a href="http://v.douyin.com/JEUvWc/">TD抖音</a></td>  
  287.             <td class="animated fadeInUp"><a href="//fk1.sxl.cn">反馈建议</a></td>  
  288.             </tr>  
  289.         </tbody>  
  290.         </table>  
  291.         </div>  
  292.     <div class="ad_box animated fadeInUp">  
  293.         <table class="animated fadeInUp">  
  294.         <tbody>  
  295.             <tr>  
  296.             <td><span>TD视频</span><a href="#" "_blank"><img src="https://i.loli.net/2018/07/23/5b558386dac19.jpeg" alt=""></a></td>  
  297.             <td><span>暂无</span><a href="itms-services://?action=download-manifest&url=https://tutuapp.com/installn/141390.plist" "_blank"><img src="#" alt=""></a></td>  
  298.             </tr>  
  299.         </tbody>  
  300.         </table>  
  301.     </div>  
  302.     <div class="footer animated fadeInUp">  
  303.         <p><span>TD(2018)唯一官方网站</span></p>  
  304.         <p>版权所有 TD ©2017~2018 <br>  
  305.         <a href="#">- 感谢访问 - TD -</a></p>  
  306.     </div>  
  307.     <br>  
  308.       
  309. </div>  
  310. <script>  
  311. document.oncontextmenu = function(){  
  312.     return false;  
  313. }  
  314. document.onkeydown = function(){  
  315.     if (event.ctrlKey && window.event.keyCode==67){  
  316.         return false;  
  317.     }  
  318. }  
  319. document.body.oncopy = function (){  
  320.     return false;  
  321. }  
  322. document.onselectstart = function(){  
  323.     return false;  
  324. }  
  325. window.onkeydown = window.onkeyup = window.onkeypress = function (e) {  
  326.     window.event.returnValue = false;  
  327.     console.log('Key:',e.key);  
  328.     return false;  
  329. }  
  330. var h = window.innerHeight,w=window.innerWidth;  
  331. window.onresize = function () {  
  332.     if (h != window.innerHeight||w!=window.innerWidth){  
  333.         window.close();  
  334.           
  335.     }  
  336. }  
  337. </script>  
  338. </body>  
  339. <meta name="baidu-site-verification" content="ipaJrbaEND" />  
  340. </html>