1 / 18

第十章 设计制作娱乐休闲类网站

第十章 设计制作娱乐休闲类网站. 回顾上节内容. 娱乐休闲类网站分类 配色原则 创意分析 设计网站动画和图像. 本节 目标. 了解:新闻类网站的分类 熟悉:新闻网站的主要功能栏目 掌握:新闻网站设计、风格与配色. 10.1 新闻网站概述 传播新闻媒体网站:这类网站由传统新闻媒体如报刊、广播、电视或通讯等创办,传统媒体为网站提供大部分资金和内容,但运作资金中也有一部分是国家的政策性支持。这类网站的是性质是公共网站。.

december
Download Presentation

第十章 设计制作娱乐休闲类网站

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 第十章 设计制作娱乐休闲类网站

  2. 回顾上节内容 • 娱乐休闲类网站分类 • 配色原则 • 创意分析 • 设计网站动画和图像

  3. 本节目标 • 了解:新闻类网站的分类 • 熟悉:新闻网站的主要功能栏目 • 掌握:新闻网站设计、风格与配色

  4. 10.1新闻网站概述 传播新闻媒体网站:这类网站由传统新闻媒体如报刊、广播、电视或通讯等创办,传统媒体为网站提供大部分资金和内容,但运作资金中也有一部分是国家的政策性支持。这类网站的是性质是公共网站。

  5. 综合性商业网站:国内多数综合性门户网站都把新闻作为吸引浏览者的一种重要手段,对传统媒体和新闻网站的新闻进行“二次传播”,已经形成了具有一定影响的新闻发布平台。综合性商业网站:国内多数综合性门户网站都把新闻作为吸引浏览者的一种重要手段,对传统媒体和新闻网站的新闻进行“二次传播”,已经形成了具有一定影响的新闻发布平台。 专业新闻网站:专业新闻网站是媒介整合的产物,是中国网络新闻发展到新阶段的重要标志,也标志着中国网络媒体独立地位的进一步确立。这类网站是以某几家传统媒体为依托而建立的半商业化新闻网站,即经传统媒体整合后,以一个独立的公司形式进行运作。

  6. 10.2主要功能栏目 新闻网站主页: 即时新闻,强调时效性 热点与专题,强调专业性 站内新闻搜索,则以整个新闻网站内置的数据库为依托,强调一个“全”字 互动性板块是提升整个网站人气的重要组成部分

  7. 新闻详细内容页:新闻详细内容页是新闻网站的最终文章页面,是全部由新闻内容组成的页面,是链接关系的终点新闻详细内容页:新闻详细内容页是新闻网站的最终文章页面,是全部由新闻内容组成的页面,是链接关系的终点 标题列表页:标题列表页是同类新闻的十几个、几十个标题组成的列表页面,是全部由链接组成的页面。 图片新闻:一般来说,新闻网站还有图片新闻,用于生动形象地展示重要的新闻信息。

  8. 10.3新闻网站设计分析 新闻网站设计要注意以下方面 新闻的真实性 新闻的时效性 新闻的公开传播性 互动性 超长的页面

  9. 10.4风格与配色 新闻网站面向大众、内容趋同,更加需要通过网页风格的设计使网页与众不同,从而获得竞争优势。新闻网站页面的风格应当沉稳、简明、大方,新闻网站一般采用对比鲜明、冲击强烈的色彩作为首页的主色调即以一两种基色的搭配为主色来显示新闻网站富有竞争力的特性,所以要通过较浓烈的色彩来强化人们的视觉。

  10. 第十章 设计制作新闻网站 新闻网站实现(一)

  11. 在SQL数据库中创建所需要的表,编写链接数据库的代码在SQL数据库中创建所需要的表,编写链接数据库的代码 <% set conn=server.CreateObject("adodb.connection") conn.open "driver={sql server};uid=ljf;pwd=ljf;server=PC-201004301444\LJF;database=data;" %>

  12. 数据的读取 <%set rs=server.CreateObject("adodb.recordset") rs.open "select newspic from news where newspic <> '' ",conn,1,1 if not rs.eof then %> <table width="33%" border="0" cellspacing="0" cellpadding="0" > <%while not rs.eof%> <td align="center" width="100" height="50" class="bg"><img width="150" height="120" src="<%=rs("newspic")%>" /></td> </tr> <%rs.movenextwend%> </table><%end if rs.close%>

  13. <%set rs=server.CreateObject("adodb.recordset") rs.open "select * from news order by IssueDate desc ",conn,1,1 if not rs.eof then %> <a href="xw.asp?newsid=<%=rs("newsid")%>"> <%=rs("IssueDate")%>|<%=rs("Title")%></a></td> <%rs.movenextwend%></table><%end if rs.close%>

  14. 第十章 设计制作新闻网站 新闻网站实现(二)

  15. 在SQL数据库中创建所需要的表,编写链接数据库的代码在SQL数据库中创建所需要的表,编写链接数据库的代码 <% set conn=server.CreateObject("adodb.connection") conn.open "driver={sql server};uid=ljf;pwd=ljf;server=PC-201004301444\LJF;database=data;" %>

  16. 新闻列表 <%set rs=server.CreateObject("adodb.recordset") rs.open "select newspic from news where newspic <> '' ",conn,1,1 if not rs.eof then %> <table width="33%" border="0" cellspacing="0" cellpadding="0" > <%while not rs.eof%> <td align="center" width="100" height="50" class="bg"><img width="150" height="120" src="<%=rs("newspic")%>" /></td> </tr> <%rs.movenextwend%> </table><%end if rs.close%>

  17. <%set rs=server.CreateObject("adodb.recordset") rs.open "select * from news order by IssueDate desc ",conn,1,1 if not rs.eof then %> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="bg"> <%while not rs.eof%> <a href="xw.asp?newsid=<%=rs("newsid")%>"> <%=rs("IssueDate")%>|<%=rs("Title")%></a></td> <%rs.movenext wend%> </table> <%end if rs.close%>

  18. 总结 • 新闻网站概述 • 主要功能栏目 • 新闻网站设计分析 • 风格与配色 • 新闻网站的实现

More Related