浏览代码

产权交易

RongCheng
庞东旭 2 年前
父节点
当前提交
795b63b15e
共有 9 个文件被更改,包括 29 次插入8 次删除
  1. +1
    -1
      infoport/homestead.html
  2. +1
    -1
      infoport/homesteadDetail.html
  3. +1
    -1
      infoport/index.html
  4. +1
    -1
      infoport/newDetail.html
  5. +1
    -1
      infoport/property.html
  6. +1
    -1
      infoport/propertyDetail.html
  7. +1
    -1
      infoport/resource.html
  8. +1
    -1
      infoport/resourceDetail.html
  9. +21
    -0
      infoport/static/css/index.css

+ 1
- 1
infoport/homestead.html 查看文件

@@ -218,7 +218,7 @@
<div class="footer_link">
<p class="footer_link_tit">友情链接</p>
{{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}}
</div>



+ 1
- 1
infoport/homesteadDetail.html 查看文件

@@ -165,7 +165,7 @@
<div class="footer_link">
<p class="footer_link_tit">友情链接</p>
{{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}}
</div>



+ 1
- 1
infoport/index.html 查看文件

@@ -112,7 +112,7 @@
<div class="footer_link">
<p class="footer_link_tit">友情链接</p>
{{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}}
</div>



+ 1
- 1
infoport/newDetail.html 查看文件

@@ -49,7 +49,7 @@
<div class="footer_link">
<p class="footer_link_tit">友情链接</p>
{{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}}
</div>



+ 1
- 1
infoport/property.html 查看文件

@@ -202,7 +202,7 @@
<div class="footer_link">
<p class="footer_link_tit">友情链接</p>
{{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}}
</div>



+ 1
- 1
infoport/propertyDetail.html 查看文件

@@ -146,7 +146,7 @@
<div class="footer_link">
<p class="footer_link_tit">友情链接</p>
{{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}}
</div>



+ 1
- 1
infoport/resource.html 查看文件

@@ -196,7 +196,7 @@
<div class="footer_link">
<p class="footer_link_tit">友情链接</p>
{{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}}
</div>



+ 1
- 1
infoport/resourceDetail.html 查看文件

@@ -136,7 +136,7 @@
<div class="footer_link">
<p class="footer_link_tit">友情链接</p>
{{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}}
</div>



+ 21
- 0
infoport/static/css/index.css 查看文件

@@ -353,4 +353,25 @@
100% {
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;
}
}

正在加载...
取消
保存