| @@ -218,7 +218,7 @@ | |||||
| <div class="footer_link"> | <div class="footer_link"> | ||||
| <p class="footer_link_tit">友情链接</p> | <p class="footer_link_tit">友情链接</p> | ||||
| {{each webList.botoom1 as value i}} | {{each webList.botoom1 as value i}} | ||||
| <a target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| <a class="hotFile" target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| {{/each}} | {{/each}} | ||||
| </div> | </div> | ||||
| @@ -165,7 +165,7 @@ | |||||
| <div class="footer_link"> | <div class="footer_link"> | ||||
| <p class="footer_link_tit">友情链接</p> | <p class="footer_link_tit">友情链接</p> | ||||
| {{each webList.botoom1 as value i}} | {{each webList.botoom1 as value i}} | ||||
| <a target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| <a class="hotFile" target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| {{/each}} | {{/each}} | ||||
| </div> | </div> | ||||
| @@ -112,7 +112,7 @@ | |||||
| <div class="footer_link"> | <div class="footer_link"> | ||||
| <p class="footer_link_tit">友情链接</p> | <p class="footer_link_tit">友情链接</p> | ||||
| {{each webList.botoom1 as value i}} | {{each webList.botoom1 as value i}} | ||||
| <a target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| <a class="hotFile" target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| {{/each}} | {{/each}} | ||||
| </div> | </div> | ||||
| @@ -49,7 +49,7 @@ | |||||
| <div class="footer_link"> | <div class="footer_link"> | ||||
| <p class="footer_link_tit">友情链接</p> | <p class="footer_link_tit">友情链接</p> | ||||
| {{each webList.botoom1 as value i}} | {{each webList.botoom1 as value i}} | ||||
| <a target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| <a class="hotFile" target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| {{/each}} | {{/each}} | ||||
| </div> | </div> | ||||
| @@ -202,7 +202,7 @@ | |||||
| <div class="footer_link"> | <div class="footer_link"> | ||||
| <p class="footer_link_tit">友情链接</p> | <p class="footer_link_tit">友情链接</p> | ||||
| {{each webList.botoom1 as value i}} | {{each webList.botoom1 as value i}} | ||||
| <a target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| <a class="hotFile" target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| {{/each}} | {{/each}} | ||||
| </div> | </div> | ||||
| @@ -146,7 +146,7 @@ | |||||
| <div class="footer_link"> | <div class="footer_link"> | ||||
| <p class="footer_link_tit">友情链接</p> | <p class="footer_link_tit">友情链接</p> | ||||
| {{each webList.botoom1 as value i}} | {{each webList.botoom1 as value i}} | ||||
| <a target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| <a class="hotFile" target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| {{/each}} | {{/each}} | ||||
| </div> | </div> | ||||
| @@ -196,7 +196,7 @@ | |||||
| <div class="footer_link"> | <div class="footer_link"> | ||||
| <p class="footer_link_tit">友情链接</p> | <p class="footer_link_tit">友情链接</p> | ||||
| {{each webList.botoom1 as value i}} | {{each webList.botoom1 as value i}} | ||||
| <a target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| <a class="hotFile" target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| {{/each}} | {{/each}} | ||||
| </div> | </div> | ||||
| @@ -136,7 +136,7 @@ | |||||
| <div class="footer_link"> | <div class="footer_link"> | ||||
| <p class="footer_link_tit">友情链接</p> | <p class="footer_link_tit">友情链接</p> | ||||
| {{each webList.botoom1 as value i}} | {{each webList.botoom1 as value i}} | ||||
| <a target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| <a class="hotFile" target="_blank" href="{{value.contentUrl}}">{{value.contentValue}}</a> | |||||
| {{/each}} | {{/each}} | ||||
| </div> | </div> | ||||
| @@ -353,4 +353,25 @@ | |||||
| 100% { | 100% { | ||||
| opacity: 1; | opacity: 1; | ||||
| } | } | ||||
| } | |||||
| .hotFile{ | |||||
| text-transform:uppercase; | |||||
| background: -webkit-linear-gradient(45deg,#e95616,#56e916,#e716e9,#1616e9); | |||||
| -moz-linear-gradient(45deg,#e95616,#56e916,#e716e9,#1616e9); | |||||
| -ms-linear-gradient(45deg,#e95616,#56e916,#e716e9,#1616e9);/* 渐变背景 */ | |||||
| color:transparent; | |||||
| /*设置字体颜色透明*/ | |||||
| -webkit-background-clip: text; | |||||
| /*背景裁剪为文本形式*/ | |||||
| animation: ran 5s linear infinite; | |||||
| /*动态20s展示*/ | |||||
| } | |||||
| @keyframes ran { | |||||
| from { | |||||
| backgroud-position: 0 0; | |||||
| } | |||||
| to { | |||||
| background-position: 1000px 0; | |||||
| } | |||||
| } | } | ||||