| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 679 人关注过本帖
标题:你们好!我请教个问题!!关于带连接的自动变化图片的问题
只看楼主 加入收藏
realbmw
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-8-12
收藏
 问题点数:0 回复次数:2 
你们好!我请教个问题!!关于带连接的自动变化图片的问题
这个代码是我在网上找的,很多站都转载的这个:我更改了图片的连接后上传后运行点击连接没反应!!!!
连接修改在下面.问题地址在:http://  点击大图象没有反应,请各位帮看下谢谢你们!


<script language="JavaScript">
<!--

function getCookieVal (offset) {
  var endstr = document.cookie.indexOf (";", offset);
  if (endstr == -1)
    endstr = document.cookie.length;
  return unescape(document.cookie.substring(offset, endstr));  }

function FixCookieDate (date) {
  var base = new Date(0);
  var skew = base.getTime(); // dawn of (Unix) time - should be 0
  if (skew > 0)  // Except on the Mac - ahead of its time
    date.setTime (date.getTime() - skew);  }

function GetCookie (name) {
  var arg = name + "=";
  var alen = arg.length;
  var clen = document.cookie.length;
  var i = 0;
  while (i < clen) {
    var j = i + alen;
    if (document.cookie.substring(i, j) == arg)
      return getCookieVal (j);
 i = document.cookie.indexOf(" ", i) + 1;
    if (i == 0) break; }
  return null;   }  

//  assign expiration date variable for cookie

var expdate = new Date ();
FixCookieDate(expdate);
expdate.setTime(expdate.getTime() + (5 * 60 * 1000)) // 5 minutes  

//  initialize countimg variable to track images
countimg = (GetCookie("countimg") != null) ? (GetCookie("countimg")-1) : -1
countimg = (countimg <-1) ? -1 : countimg
IMGArray = new Array(3)

if (document.images) {
 IMGArray[0] = new Image(205,56)
 IMGArray[1] = new Image(205,56)
 IMGArray[2] = new Image(205,56)   }

// Old browsers get an array of empty strings

else {
 IMGArray[0] = ""
 IMGArray[1] = ""
 IMGArray[2] = ""       }
<!-- 改变下面的三个图像的地址及相应的链接地址-->
IMGArray[0].src = "image/fenhong.jpg"
IMGArray[0].URL = "http://
IMGArray[1].src = "image/xinfuaa.jpg"
IMGArray[1].URL = "http://
IMGArray[2].src = "image/jiliaa.jpg"
IMGArray[2].URL = "http://


function updateIM(countimg) { return countimg; }

//  functions for onMouseOver, onMouseOut, onClick event handlers

function Overhref2() { updateIM(countimg)
 if (IMGArray[countimg] != null ) {
 window.status = IMGArray[countimg].URL; return true; }}

function Outhref2() { window.status = ""; return true; }

function clickhref2() { updateIM(countimg)
 if (IMGArray[countimg] != null ) {
 location = IMGArray[countimg].URL }}

//  Image swapping function

function showIMAGE() { updateIM(countimg++)

if (document.images) {

// Make sure countimg does'nt get too big

 if ( countimg > IMGArray.length - 1 ) { countimg = IMGArray.length - IMGArray.length }

 document.images.banner.src = IMGArray[countimg].src
 exbannerID = setTimeout("showIMAGE()",6500) }}


function setIt2() { updateIM(countimg)
 document.cookie = "countimg=" + countimg + "; expires=" + expdate.toGMTString()  }

//  get cookie countimg onblur, onload

function getIt2() {
 countimg = (GetCookie("countimg") != null) ? (GetCookie("countimg")) : 0
 updateIM(countimg)
 if (exbannerID != null) { clearTimeout(exbannerID); showIMAGE() }}

function initCOOKIES() {

window.onunload = setIt2
window.onfocus = getIt2
window.onblur = setIt2  }

function initBANNER() {
 
 showIMAGE()
 cookieID = setTimeout("initCOOKIES()",1000) }

window.onload = initBANNER

// -->
</script>
搜索更多相关主题的帖子: 自动 图象 地址 代码 
2008-08-12 22:35
realbmw
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-8-12
收藏
得分:0 
没人知道吗?
没人知道吗?
2008-08-13 09:49
yms123
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:209
帖 子:12488
专家分:19042
注 册:2004-7-17
收藏
得分:0 
楼主要的是这种效果?

Flash切换广告.zip (335.25 KB)
2008-08-13 10:18
快速回复:你们好!我请教个问题!!关于带连接的自动变化图片的问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016555 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved