我的编程空间,编程开发者的网络收藏夹
学习永远不晚

phpcms图片频道模板制作

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

phpcms图片频道模板制作

关键字描述:制作 模板 频道 图片 " < > picture if current

phpcms图片频道的模板制作

前面我们已经讲过了文章、下载频道的模板制作,今天讲完图片频道之后,剩下的就是专题的制作,虽然每个频道都有专题,但是制作方法都是一样的,我们讲集中讲解。好,闲话不说,开始讲课。

打开picture/index.html文件,我们就会发现都是我们前面讲过很熟悉的标签,图片频道与别的频道最大的不同,就是在显示的时候默认显示的都是缩略图,也就是我们看到的这一串标签

{$picpicture(0,$channelid,$cat[catid],1,0,0,10,30,0,0,0,3,1,0,130,100,5)}

因此我们主要来讲这个标签的制作,别的顶级栏目。终极栏目的制作和文章频道都是相同的

在picture文件夹下面以tag开头的文件有4个

tag_picpicture.html 图片缩略图调用标签

tag_picturelist.html 图片标题列表调用标签

tag_slidepicpicture.html 图片幻灯片调用标签

tag_slidepicpicture-js.html 图片js效果标签模板

打开tag_picpicture.html,我们会看到

{loop $pictures $i $picture}

$i是用来判断几列的

利用这个i来和系统设置的$cols 做比较

利用他们的余数来判断是否分行

<img class="lazy" data-src='{$picture[thumb]}' alt='{$picture[alt]}' width='{$imgwidth}' height='{$imgheight}'> 这里面就是你在发布图片时候选的 缩略图的大小

<a href='{$picture[url]}' target='_blank' title='{$picture[alt]}'[/color]>{$picture[title]}</a>

这几个分别是图片的地址 图片的提示 图片的标题

{if $descriptionlen}

<tr>

<td>{$picture[content]} <a href='{$picture[url]}' target='_blank'>详细>></a></td>

</tr>

{/if}

这一句是,如果允许显示说明,则显示具体的说明信息

在tag_picturelist.html中,显示的东西则比缩略图模板要多

{$picture[img]} 标题图片

{$picture[catname]} 所属栏目

<a href="{$picture[url]}" title="{$picture[alt]}" target="{$picture[target]}" class="tag_title_link{$picture[fonttype]}">{$picture[title]}</a> 图片标题及路径

{if $showhits}({$picture[hits]}){/if} 如果允许显示点击数,则显示点击数

{if $showauthor}[作者:{$picture[author]}]{/if} 显示作者

{if $datetype}[<span class="tag_date">{$picture[adddate]}</span>]{/if} 显示添加时间

{if $descriptionlen}{$picture[content]}{/if} 显示说明

图片内容页content.html的制作

打开这个网页

<script language=javascript type=text/javascript>

function fontZoom(size)

{

document.getElementById('{$addtime}l').style.fontSize=size 'px'

}

var pictureurl=new Array();

var picturename=new Array();

{loop $pictureurls $id $pic}

pictureurl[{$id}] = "{$pic[url]}";

picturename[{$id}] = "{$pic[name]}";

{/loop}

</script>

这个js函数是字体缩放函数

<!--图片浏览JS开始-->

<script language=JavaScript>

<!-- Begin

var rotate_delay =4000; // delay in milliseconds (1000 = 1 secs)

current = 0;

function next() {

if(document.slideform.slide[current 1])

{

if(document.all){

document.images.show.style.filter="blendTrans(duration=2)"

关键字描述:制作 模板 频道 图片 " < > picture if current

document.images.show.style.filter="blendTrans(duration=crossFadeDuration)"

document.images.show.filters.blendTrans.Apply()

}

document.images.show.class="lazy" data-src = pictureurl[current 1];

setidval('picname',picturename[current 1]);

if(document.all){

document.images.show.filters.blendTrans.play()

}

document.slideform.slide.selectedIndex = current;

}

else

first();

}

function previous()

{

if(current-1 >= 0)

{

if(document.all){

document.images.show.style.filter="blendTrans(duration=2)"

document.images.show.style.filter="blendTrans(duration=crossFadeDuration)"

document.images.show.filters.blendTrans.Apply()

}

document.images.show.class="lazy" data-src = pictureurl[current-1];

setidval('picname',picturename[current-1]);

if(document.all){

document.images.show.filters.blendTrans.play()

}

document.slideform.slide.selectedIndex = --current;

}

else

last();

}

function first()

{

current = 0;

if(document.all){

document.images.show.style.filter="blendTrans(duration=2)"

document.images.show.style.filter="blendTrans(duration=crossFadeDuration)"

document.images.show.filters.blendTrans.Apply()

}

document.images.show.class="lazy" data-src = pictureurl[0];

setidval('picname',picturename[0]);

if(document.all){

document.images.show.filters.blendTrans.play()

}

document.slideform.slide.selectedIndex = 0;

}

function last() {

current = document.slideform.slide.length-1;

if(document.all){

document.images.show.style.filter="blendTrans(duration=2)"

document.images.show.style.filter="blendTrans(duration=crossFadeDuration)"

document.images.show.filters.blendTrans.Apply()

}

document.images.show.class="lazy" data-src = pictureurl[current];

setidval('picname',picturename[current]);

if(document.all){

document.images.show.filters.blendTrans.play()

}

document.slideform.slide.selectedIndex = current;

}

function ap(text) {

document.slideform.slidebutton.value = (text == "Stop") ? "Start" : "Stop";

rotate();

}

function change() {

current = document.slideform.slide.selectedIndex;

if(document.all){

document.images.show.style.filter="blendTrans(duration=2)"

document.images.show.style.filter="blendTrans(duration=crossFadeDuration)"

document.images.show.filters.blendTrans.Apply()

}

document.images.show.class="lazy" data-src = pictureurl[current];

setidval('picname',picturename[current]);

if(document.all){

document.images.show.filters.blendTrans.play()

}

}

function rotate() {

if (document.slideform.slidebutton.value == "Stop") {

current = (current == document.slideform.slide.length-1) ? 0 : current 1;

if(document.all){

document.images.show.style.filter="blendTrans(duration=2)"

关键字描述:制作 模板 频道 图片 " < > picture if current

document.images.show.style.filter="blendTrans(duration=crossFadeDuration)"

document.images.show.filters.blendTrans.Apply()

}

document.images.show.class="lazy" data-src = pictureurl[current];

setidval('picname',picturename[current]);

if(document.all){

document.images.show.filters.blendTrans.play()

}

document.slideform.slide.selectedIndex = current;

window.setTimeout("rotate()", rotate_delay);

}

}

function openpic()

{

window.open(pictureurl[current]);

}

// End -->

</script>

这个函数是控制js变换的函数

CODE: [Copy to clipboard] <!--主标题--><div id="title" align="center">{$title}</div>

<!--文件属性--><div class="par" align="center">发布日期:{$adddate}&nbsp;&nbsp;作者:<a href="{PHPCMS_PATH}member/member.php?username={$username}" class="member_url">{$author}</a>&nbsp;&nbsp;来源:<a href="{$copyfromurl}" target="_blank">{$copyfromname}</a>&nbsp;&nbsp;浏览次数:<span id="hits">0</span>&nbsp;&nbsp;<a href="{PHPCMS_PATH}comment/index.php?item=pictureid&itemid={$pictureid}&itemurl={$itemurl}" class="commenturl">网友评论<span id="commentnumber1">0</span>条</a>&nbsp;&nbsp;文字大小:【<a href="javascript :fontZoom(16)">大</a>】【<a href="javascript :fontZoom(14)">中</a>】【<a href="javascript :fontZoom(12)">小</a>】 评分等级:{$stars}</div>

<hr align="center" width="740" size="1" noshade style="color:#cccccc;" />

<div class="content_text" id="{$addtime}1"><a href="{$itemurl}">来源:{$_PHPCMS['sitename']}({$PHP_SITEURL})<br/>作者:{$username}<br/>原文:{$title}({$itemurl})</a></div>

<div class="content_text" id="{$addtime}l">{$content}</div>

{if $specialid}<div class="content_text" id="{$addtime}l">相关专题:<a href="{$special[specialurl]}" class="specialurl">{$special[specialname]}</a></div>{/if} 这一串和我们以前讲文章页面是一样的,是一些相关的信息

从<form name=slideform >这个地方开始,就是图片的显示区

<span id="picname" style="font-weight:bold;font-size:14px;">{$pictureurls[0][name]}</span>

图片名称

<img class="lazy" data-src="{$pictureurls[0][url]}" align="center" name="show" id="picture{$id}" alt="{$pictureurls[0][name]}" border="0" style="cursor:hand;" on click="openpic()" on load="javascript :setpicWH(picture{$id},720,1000)">

图片的具体内容

<!--图片名列表-->

关键字描述:制作 模板 频道 图片 " < > picture if current

<select on change="change();" name="slide">

{loop $pictureurls $id $pic}

<option value="{$id}">{$pic[name]}</option>

{/loop}

</select>

!--控制按钮-->

<input title=Beginning on click=first(); type=button value=" |<< " class="btn">

<input title=Previous on click=previous(); type=button value=" << " class="btn">

<input title=AutoPlay on click=ap(this.value); type=button value=Start name=slidebutton class="btn">

<input title=Next on click=next(); type=button value=" >> " class="btn">

<input name="button" type=button title=End on Click=last(); value=" >>| " class="btn">

后面的东西就和文章页面是一样的,都是发布评论的内容

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

phpcms图片频道模板制作

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

phpcms图片频道模板制作

关键字描述:制作 模板 频道 图片 " < > picture if currentphpcms图片频道的模板制作前面我们已经讲过了文章、下载频道的模板制作,今天讲完图片频道之后,剩下的就是专题的制作,虽然每个频道都有专题,
2022-06-12

phpcms下载频道的模板制作

关键字描述:制作 模板 " < 页面 > id downurl 下载 标签phpcms下载频道的模板制作编程客栈我们在前面3节已经讲到了如何制作首页、文章频道的模板,今天我们讲下载频道的模板制作下载频道页面解释如下categ
2022-06-12

phpcms标签模板及专题模板的制作

关键字描述:模板 制作 专题 标签 " < article if /if > classphpcms标签模板及专题模板的制作1.标签模板的制作前面我们已经讲到了每个频道模板的制作,但是我们只是插入对应的标签代码,如何做到显示
2022-06-12

phpcms频道模板栏目循环调用优化方法分享

首先找到默认模板中的循环代码: 复制代码代码如下: {php $j=1;} {loop subcat($catid) $v} {php if($v['type']!=0) continue;}
2022-06-12

PHPCMS 模板制作教程 黑夜之舞出品

第一讲:了解phpcms2008模板的位置及结构 首先从官网把phpcms2008最新版本下载下来,并安装好。安装好之后在后台里的网站配置--基本信息那 生成文件扩展名 html 设置好,然后更新首页和缓存。生成HTML后打开网站下的
2022-06-12

Android 使用CameraX实现预览/拍照/录制视频/图片分析/对焦/缩放/切换摄像头等操作

1. CameraX架构 看官方文档 CameraX架构 有如下这一段话 使用CameraX,借助名为"用例"的抽象概念与设备的相机进行交互。 预览 : 接受用于显示预览的Surface,例如PreviewView图片分析 : 为分析 (例
2023-08-20

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录