这三张那张模板好看的ppt模板

糟糕,您访问的页面已删除或不存在!
您可以试试:
周一至周六:8:30-17:30
举报电话 189-
周一至周六:8:30-17:30
周一至周六:8:30 ~ 17:30
红动创办于2005年,老品牌值得信赖
在线客服 :
红动服务号首页主广告的图片为什么只能放三张?第四张不显示. - ecshop模板交流 - ecshop模板堂论坛
首页主广告的图片为什么只能放三张?第四张不显示.
在本站下载的爱之谷成人用品的简洁模板,图片只能放三张,第四张不显示。让一个朋友看了。说是这个模板可能把一些文件改了。在库文件管理中我找到了修改主广告的文件:请问需要改哪里?谢谢!
&meta http-equiv=&Content-Type& content=&text/ charset=utf-8&&
&style type=&text/css&&
.container, .container *{margin:0; padding:0;}
.container{width:1050 height:400 overflow:position:}
.slider{position:}
.slider li{ list-style:display: }
.slider li.li1{background:#FDF7F0; }
.slider li.li2{background:#000;}
.slider li.li3{ background:#380E8E; }
.slider img{ width:1050 height:400 display: }
.slider2{width:2000}
.slider2 li{float:}
.num{ position: right:5 bottom:5}
& & & & float:
& & & & color: #d71437;
& & & & text-align:
& & & & line-height: 16
& & & & width: 16
& & & & height: 16
& & & & font-family: A
& & & & font-size: 12
& & & & cursor:
& & & & overflow:
& & & & margin: 3px 1
& & & & border: 1px solid #d71437;
& & & & background-color: #
.num li.on{
& & & & color: #
& & & & line-height: 21
& & & & width: 21
& & & & height: 21
& & & & font-size: 16
& & & & margin: 0 1
& & & & border: 0;
& & & & background-color: #CC1108;
& & & & font-weight:
&div class=&container& id=&idTransformView&&
&&&ul class=&slider& id=&idSlider&&
&&&!--{foreach from=$flash name=no item=flash}--&
& & &li class=&li{$smarty.foreach.no.iteration}&&&a href=&{$flash.url}& target=&_blank&&&img src=&{$flash.src}&/&&/li&
& & &!--{/foreach}--&
&&&ul class=&num& id=&idNum&&
& &&&&!--{foreach from=$flash name=no item=flash}--&
& & {$smarty.foreach.no.iteration}
& & &!--{/foreach}--&
&script type=&text/javascript&&
var $ = function (id) {
& & & & return &string& == typeof id ? document.getElementById(id) :
var Class = {
&&create: function() {
& & & & return function() {
& & & && &this.initialize.apply(this, arguments);
Object.extend = function(destination, source) {
& & & & for (var property in source) {
& & & & & & & & destination[property] = source[property];
var TransformView = Class.create();
TransformView.prototype = {
&&//容器对象,滑动对象,切换参数,切换数量
&&initialize: function(container, slider, parameter, count, options) {
& & & & if(parameter &= 0 || count &= 0)
& & & & var oContainer = $(container), oSlider = $(slider), oThis =
& & & & this.Index = 0;//当前索引
& & & & this._timer =//定时器
& & & & this._slider = oS//滑动对象
& & & & this._parameter =//切换参数
& & & & this._count = count || 0;//切换数量
& & & & this._target = 0;//目标参数
& & & & this.SetOptions(options);
& & & & this.Up = !!this.options.Up;
& & & & this.Step = Math.abs(this.options.Step);
& & & & this.Time = Math.abs(this.options.Time);
& & & & this.Auto = !!this.options.A
& & & & this.Pause = Math.abs(this.options.Pause);
& & & & this.onStart = this.options.onS
& & & & this.onFinish = this.options.onF
& & & & oContainer.style.overflow = &hidden&;
& & & & oContainer.style.position = &relative&;
& & & & oSlider.style.position = &absolute&;
& & & & oSlider.style.top = oSlider.style.left = 0;
&&//设置默认属性
&&SetOptions: function(options) {
& & & & this.options = {//默认值
& & & & & & & & Up:& & & & & & & & & & & & true,//是否向上(否则向左)
& & & & & & & & Step:& & & & & & & & 5,//滑动变化率
& & & & & & & & Time:& & & & & & & & 10,//滑动延时
& & & & & & & & Auto:& & & & & & & & true,//是否自动转换
& & & & & & & & Pause:& & & & & & & & 4000,//停顿时间(Auto为true时有效)
& & & & & & & & onStart:& & & & function(){},//开始转换时执行
& & & & & & & & onFinish:& & & & function(){}//完成转换时执行
& & & & };
& & & & Object.extend(this.options, options || {});
&&//开始切换设置
&&Start: function() {
& & & & if(this.Index & 0){
& & & & & & & & this.Index = this._count - 1;
& & & & } else if (this.Index &= this._count){ this.Index = 0; }
& & & & this._target = -1 * this._parameter * this.I
& & & & this.onStart();
& & & & this.Move();
&&Move: function() {
& & & & clearTimeout(this._timer);
& & & & var oThis = this, style = this.Up ? &top& : &left&, iNow = parseInt(this._slider.style[style]) || 0, iStep = this.GetStep(this._target, iNow);
& & & & if (iStep != 0) {
& & & & & & & & this._slider.style[style] = (iNow + iStep) + &px&;
& & & & & & & & this._timer = setTimeout(function(){ oThis.Move(); }, this.Time);
& & & & } else {
& & & & & & & & this._slider.style[style] = this._target + &px&;
& & & & & & & & this.onFinish();
& & & & & & & & if (this.Auto) { this._timer = setTimeout(function(){ oThis.Index++; oThis.Start(); }, this.Pause); }
&&//获取步长
&&GetStep: function(iTarget, iNow) {
& & & & var iStep = (iTarget - iNow) / this.S
& & & & if (iStep == 0) return 0;
& & & & if (Math.abs(iStep) & 1) return (iStep & 0 ? 1 : -1);
& & & & return iS
&&Stop: function(iTarget, iNow) {
& & & & clearTimeout(this._timer);
& & & & this._slider.style[this.Up ? &top& : &left&] = this._target + &px&;
window.onload=function(){
& & & & function Each(list, fun){
& & & & & & & & for (var i = 0, len = list. i & i++) { fun(list[i], i); }
& & & & };
& & & & var objs = $(&idNum&).getElementsByTagName(&li&);
& & & & var tv = new TransformView(&idTransformView&, &idSlider&, 400, 3, {
& & & & & & & & onStart : function(){ Each(objs, function(o, i){ o.className = tv.Index == i ? &on& : &&; }) }//按钮样式
& & & & });
& & & & tv.Start();
& & & & Each(objs, function(o, i){
& & & & & & & & o.onmouseover = function(){
& & & & & & & & & & & & o.className = &on&;
& & & & & & & & & & & & tv.Auto =
& & & & & & & & & & & & tv.Index =
& & & & & & & & & & & & tv.Start();
& & & & & & & & }
& & & & & & & & o.onmouseout = function(){
& & & & & & & & & & & & o.className = &&;
& & & & & & & & & & & & tv.Auto =
& & & & & & & & & & & & tv.Start();
& & & & & & & & }
& & & & })
& & & & ////////////////////////test2
& & & & var objs2 = $(&idNum2&).getElementsByTagName(&li&);
& & & & var tv2 = new TransformView(&idTransformView2&, &idSlider2&, 1050, 3, {
& & & & & & & & onStart: function(){ Each(objs2, function(o, i){ o.className = tv2.Index == i ? &on& : &&; }) },//按钮样式
& & & & & & & & Up: false
& & & & });
& & & & tv2.Start();
& & & & Each(objs2, function(o, i){
& & & & & & & & o.onmouseover = function(){
& & & & & & & & & & & & o.className = &on&;
& & & & & & & & & & & & tv2.Auto =
& & & & & & & & & & & & tv2.Index =
& & & & & & & & & & & & tv2.Start();
& & & & & & & & }
& & & & & & & & o.onmouseout = function(){
& & & & & & & & & & & & o.className = &&;
& & & & & & & & & & & & tv2.Auto =
& & & & & & & & & & & & tv2.Start();
& & & & & & & & }
& & & & })
& & & & $(&idStop&).onclick = function(){ tv2.Auto = tv2.Stop(); }
& & & & $(&idStart&).onclick = function(){ tv2.Auto = tv2.Start(); }
& & & & $(&idNext&).onclick = function(){ tv2.Index++; tv2.Start(); }
& & & & $(&idPre&).onclick = function(){ tv2.Index--;tv2.Start(); }
& & & & $(&idFast&).onclick = function(){ if(--tv2.Step &= 0){tv2.Step = 1;} }
& & & & $(&idSlow&).onclick = function(){ if(++tv2.Step &= 10){tv2.Step = 10;} }
& & & & $(&idReduce&).onclick = function(){ tv2.Pause-=1000; if(tv2.Pause &= 0){tv2.Pause = 0;} }
& & & & $(&idAdd&).onclick = function(){ tv2.Pause+=1000; if(tv2.Pause &= 5000){tv2.Pause = 5000;} }
& & & & $(&idReset&).onclick = function(){
& & & & & & & & tv2.Step = Math.abs(tv2.options.Step);
& & & & & & & & tv2.Time = Math.abs(tv2.options.Time);
& & & & & & & & tv2.Auto = !!tv2.options.A
& & & & & & & & tv2.Pause = Math.abs(tv2.options.Pause);
&div class=&blank5&&&/div&
&div class=&blank&&&/div&
var tv = new TransformView(&idTransformView&, &idSlider&, 400, 3, {& && && && && && &把这里的3改成4就行了
(138.79 KB, 下载次数: 1)
15:20 上传
听过很多道理, 依然过不好这一生!
看下~~~~~~~~~~~~~~~~~~~~~~
学习~~~~~~~~~~~~~~·
学习一下调用,刚刚接触这个cms
开开心心每一天!
帮你顶一下,大家一起赚金币
var tv = new TransformView(&idTransformView&, &idSlider&, 400, 3, {& && && && && && &把这里的3改成4 ...
改好了。十分感谢你哈。
where we can do it?
我今天最想说: 开启签到新旅程
精彩话题最新活动
扫描模板堂二维码,关注最新活动
注册账号后积极发帖的会员你可能正需要这些专注正版设计作品交易平台我图网创办于2008年,老品牌值得信赖目前拥有会员15,569,032人,作品总数2,411,798张在线客服:热线电话:400-600-8526客户指南安全认证Copyright & 我图网沪ICP备号 用时:0.0242秒&V1.3若您发现您的权利被侵害,请发起知识产权投诉。当前位置:
三张展板模板图片
原创共享素材
编号:&&&&上传时间:&&&&大小:12.15 M
尺寸:0×0像素 &&&&格式:CDR (CDR9)&&&&颜色:CMYK
关&键&词:三张展板模板 三张 展板 模板 设计 展板设计 展板模板设计 红色系 线条 渐变色 黄色 透明 半透明 底板 会展展板 喜庆展板 展出展板 告示展板 展板底图 色块 展板标头设计 标头设计 展板 设计 广告设计 展板模板
图片描述:
&昵图网所有作品均是用户自行上传分享并拥有版权或使用权,仅供网友学习交流,未经上传用户书面授权,请勿作他用。
商用正版图片}

我要回帖

更多关于 好看的html表格模板 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信