4d84a934
曹明
初始代码提交
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{template 'common/header'}
{template 'common/slide'}
<style>
body{
font:{$_W['styles']['fontsize']} {$_W['styles']['fontfamily']};
color:{$_W['styles']['fontcolor']};
padding:0;
margin:0;
background-image:url('{if !empty($_W['styles']['indexbgimg'])}{$_W['styles']['indexbgimg']}{/if}');
background-size:cover;
background-color:{if empty($_W['styles']['indexbgcolor'])}#B6C6C6{else}{$_W['styles']['indexbgcolor']}{/if};
{$_W['styles']['indexbgextra']}
}
a{color:{$_W['styles']['linkcolor']}; text-decoration:none;}
{$_W['styles']['css']}
.box{margin:2.9% 2.8%;}
.box .box-item{display:block; height:78px; overflow:hidden; padding:5px; margin-bottom:1px; text-decoration:none; background:-webkit-linear-gradient(#f0f4f4 0%,#f0f4f4 56%,#f0f3f3 57%,#d2d6d6 100%); background:-moz-linear-gradient(top,#f0f4f4 0%,#f0f4f4 56%,#f0f3f3 57%,#d2d6d6 100%); border-radius:2px;}
.box .box-item i{float:right; display:block; height:60px; width:60px; text-align:center; line-height:60px; border-radius:50%; font-size:35px; vertical-align:middle; margin-top:4px; color:#006dcc; overflow:hidden;}
.box .box-item span{display:block; color:#fff; width:60%; height:20px; margin:10px 0 0 10px; font-weight:bold;}
</style>
<div class="box clearfix">
{php $num = 0;}
{loop $navs $nav}
{php if($num == 0) $bg = '#38735b';}
{php if($num == 1) $bg = '#384873';}
{php if($num == 2) $bg = '#5e559d';}
{php if($num == 3) $bg = '#91559d';}
{php if($num == 4) $bg = '#9d555b';}
{php if($num == 5) $bg = '#ad6139';}
<a href="{$nav['url']}" class="box-item">
{if !empty($nav['icon'])}
<i style="background:url({$_W['attachurl']}{$nav['icon']}) no-repeat; background-size:cover; border:3px solid {$bg};"></i>
{else}
<i class="fa {$nav['css']['icon']['icon']}" style="border:3px solid {$bg};{$nav['css']['icon']['style']}"></i>
{/if}
<span style="color:{$bg};{$nav['css']['name']}" title="{$nav['name']}">{$nav['name']}</span>
</a>
{php $num++; if($num > 5) $num = 0;}
{/loop}
</div>
{template 'common/footer'}
|