主頁(yè) > 知識(shí)庫(kù) > 用純CSS+DIV寫的漂亮Flash幻燈片及SQL標(biāo)簽教程!

用純CSS+DIV寫的漂亮Flash幻燈片及SQL標(biāo)簽教程!

熱門標(biāo)簽:中國(guó)地圖標(biāo)注各省份 移動(dòng)400辦理電話 蘇州通信外呼系統(tǒng)多少錢 荒野大鏢客2地圖標(biāo)注怎么變中文 山西旅游景地圖標(biāo)注 沈陽(yáng)智能外呼系統(tǒng)排名 武漢人工外呼系統(tǒng) 北川縣地圖標(biāo)注 上古卷軸5地圖標(biāo)注mod
用純CSS+DIV寫的漂亮Flash幻燈片及SQL標(biāo)簽教程!

下面代碼有點(diǎn)多!但做出來(lái)你肯定喜歡!

用純CSS+DIV寫的漂亮Flash幻燈片及SQL標(biāo)簽教程!我不想廢話了,開門見山吧。

先看演示 :http://www.gz7y.com   點(diǎn)精彩推薦即可看見!

如果下面代碼你看不懂或者做不出來(lái),明天等待我的視頻吧。

CSS如下:
STYLE type=text/css>
!--
#f_div{width:230px; height:205px; margin:0 auto; overflow:hidden;}
#f_imgDiv{width:100%; height:205px; overflow:hidden;}
#f_img{filter:progid:DXImageTransform.Microsoft.Fade(Overlap=1.00); border:0;}
#f_infoDiv{width:100%;top:-16px !important;top:-18px; position:relative;}
#f_buttonDiv{width:100%; height:17px; overflow:hidden; text-align:left;}
#f_line{width:100%;height:1px;background:#fff; overflow:hidden;filter:progid:DXImageTransform.Microsoft.Alpha(startX=0, startY=0, finishX=50, finishY=100,style=1,opacity=0,finishOpacity=100)}
#f_buttonDiv div{width:1px;height:17px; background:#fff; float:right;}
#f_buttonDiv .bg{width:17px; height:17px; background:#fff; float:right; filter:Alpha(Opacity=40);}
#f_buttonDiv a{width:17px;height:11px !important;height:17px;float:right;padding-top:5px;color:#fff;font-family:Arial, Helvetica, sans-serif;font-size:10px; line-height:10px; text-align:center;display:block;overflow:hidden;text-decoration:none;position:absolute;}
#f_buttonDiv a:link,#f_buttonDiv a:visited,#f_buttonDiv a:active{color:#000;}
#f_buttonDiv a:hover{background:#FF840C;color:#fff;}
#f_buttonDiv a.on:link,#f_buttonDiv a.on:visited,#f_buttonDiv a.on:active,#f_buttonDiv a.on:hover{background:#FF840C;color:#fff;}
#f_buttonDiv a.on:hover{background:#FF6600;}
-->
/STYLE>

SQL循 環(huán) 體 如下:


div id="f_div">
!--圖片區(qū)域-->
div id="f_imgDiv">/div>
div id="f_infoDiv">
!--數(shù)字按鈕區(qū)域-->
div id="f_buttonDiv">/div>
/div>
/div>
script>
var imgWidth=250;
var imgHeight=205;
var _timeOut_=5000;
var show_text = true; //是否顯示焦點(diǎn)文字
var timeOut=_timeOut_;
var timeOut2=_timeOut_/2;//onmouseout img后需要切換的時(shí)間
var now=0;              //第一張圖
var target="_blank";   //打開方式
var button_on ='on'; //當(dāng)前焦點(diǎn)對(duì)應(yīng)按鈕的樣式名
var button_off ='';//非當(dāng)前焦點(diǎn)對(duì)應(yīng)按鈕的樣式名
//不可修改區(qū)域
var imgUrl = new Array();
var imgText = new Array();
var imgLink = new Array();
var imgAlt= new Array();
//var menuList = new Array();//菜單menu
var ver=2; //兼容瀏覽器版本 默認(rèn)2 為非ie
var firstTime=true;
var n =-1;
[loop=5]
imgUrl[++n]='{$Field(Picurl,Text,0,...,0,)}';
imgText[n]='a href="{$Field(ID,GetInfoUrl,1,1)}" target="_blank" class=linkblack>{$Field(Title,Text,0,...,0,)}/a>';
imgLink[n]='{$Field(ID,GetInfoUrl,1,1)}';
imgAlt[n]='{$Field(Title,Text,0,...,0,)}';
[/loop]
var count=0;
for (i=0;iimgUrl.length;i++) {
if( (imgUrl[i]!="")  (imgText[i]!="") (imgLink[i]!="") (imgAlt[i]!="")) {
count++;
} else {
break;
}
}
function p$(string){
document.write(string);
}
function $(id){
return document.getElementById(id);
}
//固定圖片size
p$("style> #f_img { width:"+imgWidth+"px;height:"+imgHeight+"px;/style>");
function change(){
if (ver==1){
with($('f_img').filters[0]){
Transition=1;
apply();
play();
}
}
if (firstTime){ firstTime=false;timeOut=_timeOut_/1000;}
else{
$('f_img').src=imgUrl[now];
$('f_img').alt=imgAlt[now];
$('f_imgLink').href=imgLink[now];
for (var i=0;icount;i++) {
$('b'+i).className="button";
//$('f_menu'+i).className="";
}
$('b'+now).className="on";
//$('f_menu'+now).className="on";
now=(now>=imgUrl.length-1)?0:now+1;
timeOut=_timeOut_;
}
theTimer=setTimeout("change()", timeOut);
}
function b_change(num){
window.clearInterval(theTimer);
now=num;
firstTime=false;
change();
}
//draw 漸變line (即css:f_line)
function draw_line(){
var div = document.createElement("div");
div.id = 'f_line';
$('f_infoDiv').insertBefore(div,$('f_infoDiv').childNodes.item(0));
}
//表現(xiàn)層 start
//圖片
var a = document.createElement("a");
a.id="f_imgLink";
a.target=target;
a.href=imgLink[now];
$('f_imgDiv').appendChild(a);
var img = document.createElement("img");
img.id="f_img";
img.width=imgWidth;
img.height=imgHeight;
img.src=imgUrl[now];
img.alt=imgAlt[now];
a.appendChild(img);
//數(shù)字按鈕
for (var i=count-1;i>=0;i--){
var div_bg = document.createElement("div");
div_bg.id = 'div_bg'+i;
div_bg.className='bg';
$('f_buttonDiv').appendChild(div_bg);
var a = document.createElement("a");
a.id = 'b'+i;
a.className = (i==now+1)?"button_on":"button_off";
a.title=imgAlt[i];
a.innerHTML=i+1;
a.href='javascript:b_change('+i+')';
$('div_bg'+i).appendChild(a);
var div= document.createElement("div");
$('f_buttonDiv').appendChild(div);
}
//表現(xiàn)層 end
$('f_img').onmouseover=function(){window.clearInterval(theTimer);}
$('f_img').onmouseout=function(){theTimer=setTimeout("change()", timeOut2);}
try{  //濾鏡版本
new ActiveXObject("DXImageTransform.Microsoft.Fade");
$('f_img').filters[0].play();
ver=1;
draw_line();
}
catch (e){ver=2;}
var theTimer = setTimeout("change()", _timeOut_/1000);
/script>



別忘了SQL查詢語(yǔ)句:

--------------------------------------------------------------------------------
select top 5 ID,Title,Adddate,Picurl,Slide,Verific from KS_Article where verific=1 and Slide=1 order by Adddate desc  --------------------------------------------------------------------------------


如果你還不會(huì)做或者做不出來(lái)更或者看不懂代碼,那請(qǐng)告知我,我把視頻發(fā)出來(lái)。
您可能感興趣的文章:
  • JPA之使用JPQL語(yǔ)句進(jìn)行增刪改查
  • mysql5.7.19 解壓版安裝教程詳解(附送純凈破解中文版SQLYog)
  • 純Python開發(fā)的nosql數(shù)據(jù)庫(kù)CodernityDB介紹和使用實(shí)例
  • 3步搞定純真IP數(shù)據(jù)導(dǎo)入到MySQL的方法詳解
  • SQL刪除語(yǔ)句DROP、TRUNCATE、 DELETE 的區(qū)別
  • mybatis-plus配置控制臺(tái)打印完整帶參數(shù)SQL語(yǔ)句的實(shí)現(xiàn)
  • 在IDEA中安裝MyBatis Log Plugin插件,執(zhí)行mybatis的sql語(yǔ)句(推薦)
  • 基于JPQL實(shí)現(xiàn)純SQL語(yǔ)句方法詳解

標(biāo)簽:海東 邯鄲 南充 濱州 喀什 東莞 陽(yáng)泉 遼源

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《用純CSS+DIV寫的漂亮Flash幻燈片及SQL標(biāo)簽教程!》,本文關(guān)鍵詞  用純,CSS+DIV,寫的,漂亮,Flash,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《用純CSS+DIV寫的漂亮Flash幻燈片及SQL標(biāo)簽教程!》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于用純CSS+DIV寫的漂亮Flash幻燈片及SQL標(biāo)簽教程!的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章