您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop其他页面广告轮播的代码示例
陶旭笙2023-12-08 18:46:23ecshop商城教程已有人查阅
导读利用后台的广告位置广告列表功能:先添加一个广告位置 查看它的id//取的其他页面flash轮播
利用后台的广告位置广告列表功能:先添加一个广告位置 查看它的id
//取的其他页面flash轮播
function getflashbanner($id)
{
$sql = "select * from ".$GLOBALS['ecs']->table('ad')." where position_id='$id'";
$res = $GLOBALS['db']->getAll($sql);
$img = '';
$link = '';
$num = count($res);
foreach($res as $idx=>$value)
{
if($idx!=$num-1)
{
$line = '|';
}
else
{
$line ='';
}
$img .= 'data/afficheimg/'.$value['ad_code'].$line;
$link .= $value['ad_link'].$line;
}
$banner = array();
$banner['img'] = $img;
$banner['link'] = $link;
return $banner;
} 此函数到需要的php文件 或者include下的共同文件里 $smarty->assign('flashbanner_bgyp',getflashbanner(3)); 对应php文件的调用
<script type="text/javascript">
var swf_width=730
var swf_height=107
var files ='{$flashbanner_bgyp.img}';
var links = '{$flashbanner_bgyp.link}';
var texts = '';
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ swf_width +'" height="'+ swf_height +'">');
document.write('<param name="movie" value="focusok.swf"><param name="quality" value="high">');
document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
document.write('<param name="FlashVars" value="bcastr_file='+files+'&bcastr_link='+links+'&bcastr_title='+texts+'">');
document.write('<embed src="focusok.swf" wmode="opaque" FlashVars="bcastr_file='+files+'&bcastr_link='+links+'&bcastr_title='+texts+'& menu="false" quality="high" width="'+ swf_width +'" height="'+ swf_height +'" type="application/x-shockwave-flash" pluginspage="http://www.ebingou.cn/go/getflashplayer" />'); document.write('</object>');
</script> //对应模板的显示
需要把一个js文件放根目录 。在附件images/upload/File/focusok.rar
本文标签:
很赞哦! ()
随机图文
-
ecshop伪静态设置方法详细教程
ecshop静态设置有两种:服务器或虚拟主机要支持伪静态;1、linx系统,在后台设置即可,按照提示修改文件。htaccess.txt 修改为:.htaccess2、WIN的伪静态比较麻烦:下面这个就是常见 -
ecshop后台分页功能应用实例
Ecshop分页规则,分以下几个步骤 1.点击类别,获取第一页获取默认分类列表数据 2.点击“下一页”,采用ajax调取分页内容 实例分析(比如订单列表分页admin/order.php) -
ecshop商品属价格0元不显示的实现方法
默认的情况是,当商品属 价格为0时,后面会显示 [ ¥0.00元] ,就像下面这样。总觉的那个0.00元有点多余,用户体验不是很好。 -
ecshop商品页怎么显示品牌LOGO
问:ecshop商品详细页面的商品品牌默认是以文字形式显示的,能否改成以LOGO形式显示。答:当然可以,下面看教程。
留言与评论 (共有 条评论) |