最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果示例

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:36:37
文檔

asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果示例

asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果示例:本文實(shí)例講述了asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果。分享給大家供大家參考,具體如下: 第一步:首先引入命名空間:(vs08環(huán)境中) using System; using System.Collections; using System.Configuration; using Syste
推薦度:
導(dǎo)讀asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果示例:本文實(shí)例講述了asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果。分享給大家供大家參考,具體如下: 第一步:首先引入命名空間:(vs08環(huán)境中) using System; using System.Collections; using System.Configuration; using Syste

本文實(shí)例講述了asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果。分享給大家供大家參考,具體如下:

第一步:首先引入命名空間:(vs08環(huán)境中)

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Text; //(需要引入的)
using System.Xml; //(需要引入的)

第二步:前臺(tái)頁面的使用(需要index.swf文件):

<div align="center" id="qiyeyuangong" style="float:left;" runat="server">
 <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="710"
 height="625"
 id="tech"
 align="middle" >
 <param name="wmode" value="transparent">
 <param name="allowScriptAccess" value="sameDomain" />
 <param name="movie" value="index.swf?xml_path=slides.xml" />
 <param name="quality" value="high" />
 <embed
 src="index.swf?xml_path=slides.xml"
 quality="high"
 width="710"
 height="625"
 name="tech"
 align="middle"
 wmode="transparent"
 allowscriptaccess="sameDomain"
 type="application/x-shockwave-flash"
 pluginspage="http://www.macromedia.com/go/getflashplayer" /> 
 </embed>
 </object>
</div>

第三步:生成xml文件方法:

//生成Xml文件
public void xmlGetPic()
{
 //刪除slides.xml文件
 string fileXml = "slides.xml";
 //if (File.Exists(Server.MapPath(fileXml)))
 //{
 // File.Delete(Server.MapPath(fileXml));
 //}
 if (!File.Exists(Server.MapPath(fileXml)))
 {
 // Create a new XmlTextWriter instance
 XmlTextWriter writer = new
 XmlTextWriter(Server.MapPath("slides.xml"), Encoding.UTF8);
 // start writing!
 writer.WriteStartDocument();
 writer.WriteStartElement("flash_parameters");
 writer.WriteStartElement("preferences");
 writer.WriteStartElement("global");
 writer.WriteStartElement("basic_property");
 writer.WriteAttributeString("movieWidth", "710");
 writer.WriteAttributeString("movieHeight", "625");
 writer.WriteAttributeString("html_title", "Title");
 writer.WriteAttributeString("loadStyle", "Pie");
 writer.WriteAttributeString("startAutoPlay", "true");
 writer.WriteAttributeString("backgroundColor", "0xffffff");
 writer.WriteAttributeString("anvsoftMenu", "false");
 writer.WriteAttributeString("hideAdobeMenu", "false");
 writer.WriteAttributeString("photoDynamicShow", "true");
 writer.WriteAttributeString("enableURL", "true");
 writer.WriteAttributeString("transitionArray", "");
 writer.WriteEndElement();
 writer.WriteStartElement("title_property");
 writer.WriteAttributeString("photoTitle", "false");
 writer.WriteAttributeString("photoTitleX", "5");
 writer.WriteAttributeString("photoTitleY", "5");
 writer.WriteAttributeString("photoTitleSize", "15");
 writer.WriteAttributeString("photoTitleFont", "Verdana");
 writer.WriteAttributeString("photoTitleColor", "0xffffff");
 writer.WriteEndElement();
 writer.WriteStartElement("music_property");
 writer.WriteAttributeString("path", "");
 writer.WriteAttributeString("stream", "true");
 writer.WriteAttributeString("loop", "true");
 writer.WriteEndElement();
 writer.WriteStartElement("photo_property");
 writer.WriteAttributeString("topPadding", "0");
 writer.WriteAttributeString("bottomPadding", "65");
 writer.WriteAttributeString("leftPadding", "0");//定義顯示的圖片距離flash左邊的距離
 writer.WriteAttributeString("rightPadding", "0");//定義顯示的圖片距離flash右邊的距離
 writer.WriteEndElement();
 writer.WriteStartElement("frame_property");
 writer.WriteAttributeString("frameColor", "0x000000");
 writer.WriteEndElement();
 writer.WriteStartElement("properties");
 writer.WriteAttributeString("enable", "true");
 writer.WriteAttributeString("backgroundColor", "0xffffff");
 writer.WriteAttributeString("backgroundAlpha", "50");
 writer.WriteAttributeString("cssText", "a:link{text-decoration: underline;} a:hover{color:#ff0000; text-decoration: none;} a:active{color:#0000ff;text-decoration: none;} .blue {color:#0000ff; font-size:15px; font-style:italic; text-decoration: underline;} .body{color:#ff5500;font-size:20px;}");
 writer.WriteAttributeString("align", "bottom");
 writer.WriteEndElement();
 writer.WriteEndElement();
 writer.WriteStartElement("thumbnail");
 writer.WriteStartElement("basic_property");
 writer.WriteAttributeString("backgroundColor", "0x3c3c3c");
 writer.WriteAttributeString("buttonColor", "0x000000");
 writer.WriteAttributeString("borderColor", "0xb3b3b3");
 writer.WriteEndElement();
 writer.WriteEndElement();
 writer.WriteEndElement();
 int intCount = gs.allQiYeFCInfo().Tables[0].Rows.Count;
 string strOldImg;
 string strNewImg;
 string strTitle;
 string strFCXxms;
 if (intCount == 0)
 {
 qiyeyuangong.Visible = false;
 }
 if (intCount > 0)
 {
 writer.WriteStartElement("album");
 for (int i = 0; i < intCount; i++)
 {
 strOldImg = gs.allQiYeFCInfo().Tables[0].Rows[i]["fcimagepath"].ToString().Replace("~/", "");
 strNewImg = gs.allQiYeFCInfo().Tables[0].Rows[i]["fcnewimage"].ToString().Replace("~/", "");
 strTitle = gs.allQiYeFCInfo().Tables[0].Rows[i]["fctitle"].ToString();
 strFCXxms = gs.allQiYeFCInfo().Tables[0].Rows[i]["fcxxms"].ToString();
 writer.WriteStartElement("slide");
 writer.WriteAttributeString("jpegURL", strNewImg);//小圖片地址
 writer.WriteAttributeString("d_URL", strOldImg);//大圖片地址
 writer.WriteAttributeString("transition", "0");
 writer.WriteAttributeString("panzoom", "1");
 writer.WriteAttributeString("URLTarget", "0");
 writer.WriteAttributeString("phototime", "5");//定義圖片切換的速度,數(shù)字越大,切換速度越慢
 writer.WriteAttributeString("url", "");
 writer.WriteAttributeString("title", "Xxjpm2C000801_20080809_MVPFN1A001");
 writer.WriteAttributeString("width", "710");
 writer.WriteAttributeString("height", "625");
 writer.WriteCData("    【" + strTitle + "】" + strFCXxms);//顯示每張圖片的說明信息
 writer.WriteEndElement();
 }
 writer.WriteEndElement();
 }
 writer.WriteEndElement();
 writer.WriteEndDocument();
 writer.Close();
 }
}

效果如下圖所示:

更多關(guān)于asp.net相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《asp.net操作json技巧總結(jié)》、《asp.net字符串操作技巧匯總》、《asp.net操作XML技巧總結(jié)》、《asp.net文件操作技巧匯總》、《asp.net ajax技巧總結(jié)專題》及《asp.net緩存操作技巧總結(jié)》。

希望本文所述對(duì)大家asp.net程序設(shè)計(jì)有所幫助。

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果示例

asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果示例:本文實(shí)例講述了asp.net+xml+flash實(shí)現(xiàn)的圖片展示效果。分享給大家供大家參考,具體如下: 第一步:首先引入命名空間:(vs08環(huán)境中) using System; using System.Collections; using System.Configuration; using Syste
推薦度:
標(biāo)簽: 照片 圖像 效果
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top