love-music 发表于 3 天前

[谭咏麟《欣赏——谭咏麟》][FLAC/分轨/301M][城通]

<!DOCTYPE html>
<head>
    <meta charset="GBK">
</head>
<html>
<body>
   <span class="js-cursor-container"></span>
   <script>
         (function fairyDustCursor() {
             var possibleColors =["#D61C59","#E7D84B","#1B8798"]            
             var width = window.innerWidth;            
             var height = window.innerHeight;            
             var cursor = { x: width / 2, y: width / 2 };            
             var particles = [];            
             function init() {            
               bindEvents();            
               loop();            
             }            
             function bindEvents() {            
               document.addEventListener('mousemove', onMouseMove);         
               window.addEventListener('resize', onWindowResize);         
             }            
             function onWindowResize(e) {            
               width = window.innerWidth;            
               height = window.innerHeight;            
             }            
             function onMouseMove(e) {            
               cursor.x = e.clientX;            
               cursor.y = e.clientY;            
               addParticle(cursor.x, cursor.y, possibleColors);            
             }            
             function addParticle(x, y, color) {            
               var particle = new Particle();            
               particle.init(x, y, color);            
               particles.push(particle);            
             }            
             function updateParticles() {            
               for (var i = 0; i < particles.length; i++) {            
                     particles.update();               
               }            
               for (var i = particles.length - 1; i >= 0; i--) {            
                     if (particles.lifeSpan < 0) {            
                         particles.die();               
                         particles.splice(i, 1);               
                     }               
               }               
             }            
             function loop() {               
               requestAnimationFrame(loop);               
               updateParticles();               
             }               
             function Particle() {               
               this.character = "*";               
               this.lifeSpan = 120;               
               this.initialStyles = {               
               "position": "fixed",               
               "display": "inline-block",               
               "top": "0px",               
               "left": "0px",               
               "pointerEvents": "none",               
               "touch-action": "none",               
               "z-index": "10000000",               
               "fontSize": "25px",               
               "will-change": "transform"               
             }               
             this.init = function (x, y, color) {               
               this.velocity = {               
                     x: (Math.random() < 0.5 ? -1 : 1) * (Math.random() / 2),               
                     y: 1,               
               }               
               this.position = { x: x -5, y: y - 10 };               
               this.initialStyles.color = color;               
               this.element = document.createElement('span');               
               this.element.innerHTML = this.character;               
               applyProperties(this.element, this.initialStyles);               
               this.update();               
               document.querySelector('.js-cursor-container').appendChild(this.element);               
             }               
             this.update = function () {               
               this.position.x += this.velocity.x;               
               this.position.y += this.velocity.y;               
               this.lifeSpan--;               
               this.element.style.transform = "translate3d(" + this.position.x + "px," + this.position.y + "px, 0) scale(" + (this.lifeSpan / 120) + ")";               
             }               
             this.die = function () {               
               this.element.parentNode.removeChild(this.element);               
             }               
         }               
         function applyProperties(target, properties) {               
             for (var key in properties) {               
               target.style = properties;               
             }            
         }            
         if (!('ontouchstart' in window || navigator.msMaxTouchPoints)) init();            
   })();            
   </script>
</body>
<body>
<style type="text/css">
   .change:hover{
         background-color:rgba(15,15,15,1);
         transform:scale(1.01) translate(1%,-1%);
         transition:1s ease-in-out;
   }
   .box{
         width:table width;
         height:3px;
         margin:0 auto;
         position:relative;
         overflow:hidden;
   }
   .img:after{
         content:"";
         position:absolute;
         width:100%;
         height:100%;
         top:0;
         left:0;
         background:rgba(255,0,0);
         transform:translate(-150%) skew(-45deg);
         transition:1s ease-in-out;
   }
   .img:before{
         content:"";
         position:absolute;
         width:100%;
         height:100%;
         top:0;
         left:0;
         background:rgba(255,0,0);
         transform:translate(150%) skew(-45deg);
         transition:1s ease-in-out;
   }
   .change:hover .img:after{
         transform:translate(-50%) skew(-45deg);
   }
   .change:hover .img:before{
         transform:translate(50%) skew(-45deg);
   }
   img{
         opacity: 0.5;
   }
   .div1 a:hover img{
         opacity: 1;
         transition:1s ease-in-out;
   }
   iframe{
         opacity: 0.5;
   }
   .div1 a:hover iframe{
         opacity: 1;
         transition:1s ease-in-out;
   }
   .annu{opacity: 0.5;background:green;color:red}
   .annu:hover{
         opacity: 1;
         transition:1s ease-in-out;
         background:red;
         color:yellow;
   }
   .annu:active{
         background:blue;
         color:#fff;
   }
</style>
<div align="center">
<table width= 100% class="t_table"background="https://image.uc.cn/o/wemedia/s/upload/2023/b6378d69ae260140e9604513d224d3b2.jpg;,4,jpegx;3,700x.jpg" style="background-size: 100%; background-attachment:fixed; background-repeat:repeat">
   <tbody><tr><td>
<br> 
   <div align="center">
          <table width="95%" class="t_table" style="background-color: rgba(15,15,15,0.5)">
             <tbody><tr class="change"><td>
               <div align="right">
                     <font face="黑体">
                         <font size="4">
                           <font color=#FF0000>
                                 <br>
                                     <script type="text/javascript">
                                     var date = new Date();
                                     document.write(date.getFullYear() + "年" + (date.getMonth() + 1) + "月" + date.getDate() + "日" + "星期" + "日一二三四五六".charAt(date.getDay()));
                                     </script>
                                     <div id="div1"></div>
                                     <script>
                                       function time() {
                                             var date = new Date();
                                             var hour = date.getHours();
                                             var minutes = date.getMinutes();
                                             var seconds = date.getSeconds();
                                             var str = hour + ":" + minutes + ":" + seconds;
                                             var div1 = document.getElementById("div1");
                                             div1.innerHTML = str;}
                                       setInterval(time,1000);
                                     </script>
                           </font>
                         </font>
                     </font>
               </font>
               <div align="center">
                     <font face="黑体">
                         <font size="6">
                           <font color=#FFFF00>
                                     <script>
                                       var date = new Date();
                                       var 月份=date.getMonth() + 1
                                       var 日期=date.getDate()
                                       if (月份==5){
                                             if (日期==1){
                                                 document.write("五一国际劳动节快乐")
                                             }
                                       }
                                       if (月份==5){
                                             if (日期==4){
                                                 document.write("五四青年节")
                                             }
                                       }
                                       if (月份==6){
                                             if (日期==1){
                                                 document.write("六一儿童节快乐")
                                             }
                                       }
                                       if (月份==6){
                                             if (日期==7){
                                                 document.write("祝:辛辛学子,金榜题名!")
                                             }
                                       }
                                       if (月份==6){
                                             if (日期==8){
                                                 document.write("祝:辛辛学子,金榜题名!")
                                             }
                                       }
                                       if (月份==6){
                                             if (日期==9){
                                                 document.write("祝:辛辛学子,金榜题名!")
                                             }
                                       }
                                       if (月份==7){
                                             if (日期==1){
                                                 document.write("七一中国共产党生日")
                                             }
                                       }
                                       if (月份==8){
                                             if (日期==1){
                                                 document.write("八一建军节,祝保卫祖国的将士阖家欢乐,幸福安康!")
                                             }
                                       }
                                       if (月份==10){
                                             if (日期==1){
                                                 document.write("十一国庆节,祝伟大的祖国繁荣昌盛!人民幸福安康!!")
                                             }
                                       }
                                       if (月份==1){
                                             if (日期==1){
                                                 document.write("元旦,新年伊始,万象更新")
                                             }
                                       }
                                     </script>
<div class="box">
   <div class="img">
   </div>
</div>
<br>
                           </font>
                         </font>
                     </font>
               </div>
             </td></tr></tbody>
          </table>
      </div>
<br> 
   <div align="center">
          <table width="95%" class="t_table" style="background-color: rgba(15,15,15,0.5)">
             <tbody><tr class="change"><td>
               <div align="center">
                     <font face="黑体">
                         <font size="5">
                           <font color=#FF0000 >
                                 <br>
                                 谭咏麟《欣赏——谭咏麟》
                                 <br>
<div class="box">
   <div class="img">
   </div>
</div>
                                 <br>
                           </font>
                         </font>
                     </font>
               </div>
             </td></tr></tbody>
          </table>
      </div>
<br> 
   <div align="center">
          <table width="95%" class="t_table" style="background-color: rgba(15,15,15,0.5)">
             <tbody><tr class="change"><td>
               <div align="left">
                     <font face="黑体">
                         <font size="4">
                           <font color=#FF0000>
                                 <br>
                                 专辑信息
                                 <br>
                                 <br>
                           </font>
                         </font>
                     </font>
               </div>
               <div align="left">
                     <font face="宋体">
                         <font size="3">
                           <font color=#FFFF00>
                                      专辑名称:欣赏——谭咏麟<BR>&emsp;    专辑歌手:谭咏麟<BR>&emsp;    唱片公司:环球唱片<BR>&emsp;    发行日期:2017年4月<BR>&emsp;    资源品质:无损<BR>&emsp;    资源格式:flac<BR>&emsp;

<div class="box">
   <div class="img">
   </div>
</div>
                     <br>
                           </font>
                         </font>
                     </font>
               </div>
             </td></tr></tbody>
          </table>
      </div>
<br> 
   <div align="center">
          <table width="95%" class="t_table" style="background-color: rgba(15,15,15,0.5)">
             <tbody><tr class="change"><td>
               <div align="left">
                     <font face="黑体">
                         <font size="4">
                           <font color=#FF0000>
                                 <br>
                                 专辑简介
                                 <br>
                                 <br>
                           </font>
                         </font>
                     </font>
               </div>
               <div align="left">
                     <font face="宋体">
                         <font size="3">
                           <font color=#FFFF00>
                                      2014年,谭咏麟的“银河岁月四十载”演唱会结束之后,环球唱片的高层找到了谭咏麟,想要推出一张新专辑,问道谭咏麟是否有自己的想法。虽然入行已久的谭咏麟已经推出了100多张不同类型的专辑,但与自己欣赏的歌手共同合作一张作品,则是他一直以来的愿望,所以也把专辑命名为《欣赏》。于是列了一个名单,上面有十六七位歌手。谭咏麟希望能跟这些不同的歌手合作出一张新专辑。起初还有日本和韩国歌手,但由于歌手们的档期确实难以协调,最后只好作罢。<BR>&emsp;<BR>&emsp;    在这张专辑的制作过程中,谭咏麟不仅担任着总策划和联络人,同时还身兼作曲和监制,在专辑的制作中各个环节都尽量亲力亲为。谭咏麟邀请张学友、刘德华、陈奕迅、五月天、孙楠、谭维维、A-Lin、丁当、陈洁仪和李幸倪这十组来自不同地区的歌手,结合每个歌手的特点,为其量身定做出不同的歌曲。<BR>&emsp;<BR>&emsp;    最先与谭咏麟敲定的合作对象是五月天,在接到邀请时希望可以让他们来做这首歌,谭咏麟来监制。因为五月天在巡演的缘故,虽然第一个答应,却是最后一个录音。直到2017年初,才在台湾一起完成录制。《等一个可能》是专辑中最先完成小样的歌曲,这是一个男方苦等女方的爱情故事,男主角是谭咏麟,而女主角则是陈洁仪。<BR>&emsp;<BR>&emsp;    《游子》是谭咏麟某天上午与A-Lin通话确定好合唱计划后,下午便写好了旋律,借用英文民歌《Blowing in the wind》的灵感。把旋律拿给编曲人完成编曲,同时又邀请陈少琪、崔恕、方文山三位词人分别填词。谭咏麟希望这首歌能对一直在追寻梦想、背井离乡的人产生鼓励。<BR>&emsp;<BR>&emsp;    与刘德华共同完成的《简单是福》,谭咏麟提议这首歌可以类似《笨小孩》的风格,但刘德华却将歌曲设定为两个人互相问答,刘德华扮演一个普通人的角色,像很多年轻人一样询问谭咏麟问题。最后歌名定为《简单是福》,表达人与人之间的平和相处,无论人生遇到多少风浪,都要勇敢面对。<BR>&emsp;<BR>&emsp;    与张学友合作的歌曲《观》是听说张学友在研究佛学,想让他用修身养性的心态以及平实的感觉去演绎。在创作之初,该曲的歌词是张学友答应写的,但由于在为演唱会做准备。谭咏麟便拿给了同样懂佛学的陈永镐,以《金刚经》的理念完成了这首歌。<BR>&emsp;

<div class="box">
   <div class="img">
   </div>
</div>
                     <br>
                           </font>
                         </font>
                     </font>
               </div>
             </td></tr></tbody>
          </table>
      </div>
<br> 
   <div align="center">
          <table width="95%" class="t_table" style="background-color: rgba(15,15,15,0.5)">
             <tbody><tr class="change"><td>
               <div align="left">
                     <font face="黑体">
                         <font size="4">
                           <font color=#FF0000>
                                 <br>
                                 专辑曲目
                                 <br>
                                 <br>
                           </font>
                         </font>
                     </font>
               </div>
               <div align="left">
                     <font face="宋体">
                         <font size="3">
                           <font color=#FFFF00>
                                      01 等一个可能(谭咏麟、陈洁仪)<BR>&emsp;    02 型人道(谭咏麟、李幸倪)<BR>&emsp;    03 明天何其多(谭咏麟、陈奕迅)<BR>&emsp;    04 脱胎换骨(谭咏麟、五月天)<BR>&emsp;    05 游子(谭咏麟、A-Lin)<BR>&emsp;    06 简单是福(谭咏麟、刘德华)<BR>&emsp;    07 强者背后(谭咏麟、谭维维)<BR>&emsp;    08 强求好吗(谭咏麟、丁当)<BR>&emsp;    09 观(谭咏麟、张学友)<BR>&emsp;    10 地球人醒来吧(谭咏麟、孙楠)<BR>&emsp;

<div class="box">
   <div class="img">
   </div>
</div>
                     <br>
                           </font>
                         </font>
                     </font>
               </div>
             </td></tr></tbody>
          </table>
      </div>
<br> 
   <div align="center">
          <table width="95%" class="t_table" style="background-color: rgba(15,15,15,0.5)">
             <tbody><tr class="change"><td>
               <div align="left">
                     <font face="黑体">
                         <font size="4">
                           <font color=#FF0000>
                                 <br>
                                 专辑图片
                                 <br> 
                           </font>
                         </font>
                     </font>
               </div>
               <div align="center" >
                     <br>
<div class="div1"><a href="#">
         <img src=https://image.uc.cn/o/wemedia/s/upload/2024/b0b456d38d4e0ca6c04f683868682fb1.jpg;,4,jpegx;3,700x.jpg style="max-width:400px">
</a></div>
                                 <br>
<div class="box">
   <div class="img">
   </div>
</div>
                     <br>
               </div>
             </td></tr></tbody>
          </table>
      </div>
<br> 
   <div align="center">
          <table width="95%" class="t_table" style="background-color: rgba(15,15,15,0.5)">
             <tbody><tr class="change"><td>
               <div align="left">
                     <font face="黑体">
                         <font size="4">
                           <font color=#FF0000>
                                 <br>
                                 专辑试听
                                 <br> 
                           </font>
                         </font>
                     </font>
                     <font face="宋体">
                         <font size="3">
                           <font color=#FFFF00>
                                 <br>
                                      等一个可能
                                 <br>
                           </font>
                         </font>
                     </font>
               </div>
               <div align="center">
                     <br>
<div class="div1"><a href="#">
                     <iframe height=400 width=700 src='https://player.youku.com/embed/XNjQ0MzYwOTE0OA==' frameborder=0 'allowfullscreen'></iframe>
</a></div>
                                 <br>
<div class="box">
   <div class="img">
   </div>
</div>
                     <br>
               </div>
             </td></tr></tbody>
          </table>
      </div>
<br> 
   <div align="center">
          <table width="95%" class="t_table" style="background-color: rgba(15,15,15,0.5)">
             <tbody><tr class="change"><td>
               <div align="left">
                     <font face="黑体">
                         <font size="4">
                           <font color=#FF0000>
                                 <br>
                                 专辑下载
                                 <br> 
                           </font>
                         </font>
                     </font>
               </div>
               <div align="center">
                     <br>
                     <input type="submit" style="font-size:18px" onclick="window.open('https://url00.ctfile.com/f/1621100-1423035521-a1985f?p=124347')" value="点击此按钮进入下载页面" class="annu"; style="cursor:pointer; width:200; height:50;"/>
                     <br> 
                     <font color=#FFFF00>
                     <br>
                     访问密码:124347
                                 <br>
<div class="box">
   <div class="img">
   </div>
</div>
                     <br>
                     </font>
               </div>
             </td></tr></tbody>
          </table>
      </div>
   </td></tr></tbody>
</table>
</div>
</body>
</html>
页: [1]
查看完整版本: [谭咏麟《欣赏——谭咏麟》][FLAC/分轨/301M][城通]