用js实现的一个Flash滚动轮换显示图片代码生成器

代码如下:

<!--文件头模板-->
<SCRIPT src=top.js></SCRIPT>
<SCRIPT language=javascript>
    writeTop('Flash滚动显示图片代码生成','2006-10-18');
</SCRIPT>

<!--以下为内容-->
<SCRIPT>
//运行代码
function runEx(cod1)  {
     cod=document.getElementById(cod1)
      var code=cod.value;
      if (code!=""){
          var newwin=window.open('','','');  
          newwin.opener = null 
          newwin.document.write(code);  
          newwin.document.close();
    }
}
//复制代码
function doCopy(ID) { 
    if (document.all){
         textRange = document.getElementById(ID).createTextRange(); 
         textRange.execCommand("Copy"); 
    }
    else{
         alert("此功能只能在IE上有效")
    }
}

//展开_收起段落
function close_open(theID){
    if(document.getElementById(theID).style.display!='none') {
        document.getElementById(theID).style.display='none';
    }
    else 
        document.getElementById(theID).style.display='block';
}
</SCRIPT>

<SCRIPT language=javascript>
    //生成代码
    function genCode()
    {
        var html='';
        var picUrl='';
        var picLink='';
        var picTitle='';
        var picWidth=0;
        var picHeight=0;
        var titleHeight=0;
        var backgroudn='';

{
            var tempUrl='';
            var tempLink='';
            var tempTitle='';
            for(i=0;i<9;++i){
                tempUrl=document.getElementById('picUrl_'+(1+i)).value;
                tempLink=document.getElementById('picLink_'+(1+i)).value;
                tempTitle=document.getElementById('picTitle_'+(1+i)).value;
                if(tempUrl == '')continue;
                if(tempLink == '')tempLink=tempUrl;
                if(tempTitle == '')tempTitle='无题';
                picUrl   += tempUrl + '|';
                picLink  += tempLink + '|';
                picTitle += tempTitle + '|';
            }
            picUrl = picUrl.substring(0,picUrl.length-1);
            picTitle = picTitle.substring(0,picTitle.length-1);
            picLink = picLink.substring(0,picLink.length-1);
            picWidth = parseInt(document.getElementById('picWidth').value);
            picHeight=parseInt(document.getElementById('picHeight').value);
            titleHeight = parseInt(document.getElementById('titleHeight').value);
            backgroudn = document.getElementById('backgroudn').value;
        }

html += '<EMBED pluginspage=http://www.macromedia.com/go/getflashplayer src=http://staryxy.googlepages.com/PicPlay.swf';
        html += ' width='  + picWidth;
        html += ' height=' + (picHeight + titleHeight);
        html += ' type=application/x-shockwave-flash WMODE="opaque" FLASHVARS="';
        html += 'pics='+picUrl;
        html += '&links='+picLink;
        html += '&texts='+picTitle;
        html += '&borderwidth=' + picWidth;
        html += '&borderheight=' + picHeight;
        html += '&textheight=' + titleHeight;
        html += '" MENU="false"';
        html += ' BGCOLOR="' + backgroudn;
        html += '" QUALITY="high" ALLOWSCRIPTACCESS="sameDomain"></EMBED>';

document.getElementById('ShowCode').value = html;
        show.innerHTML = html;
    }
</SCRIPT>

<div style="margin-top:5px;background:#9abcde">
<div style='cursor:hand' onclick=close_open('edit')><li>设置</li></div>
<div id='edit' style="margin-left:15px; display:block;">
    <div style="background:#cdcdcd">
        图片显示宽度:<input size=10 id=picWidth   title="图片显示宽度" value="300"></input>
        图片显示高度:<input size=10 id=picHeight  title="图片显示高度" value="200"></input>
        文字区域高度:<input size=10 id=titleheight title="文字区域高度" value="20"></input>
        背景色:<input size=10 id=backgroudn title="背景色" value='#cdcdcd'></input>
    </div>
    <div style="background:#eeeeee">
        图片一:
        <input maxlength=2048 size=25 id=picUrl_1 value="http://staryxy.googlepages.com/diner1.jpg" title="图片URL地址"></input>
        链接地址:<input maxlength=2048 size=25 id=picLink_1 value="" title="链接地址"></input>
        说明:<input maxlength=2048 size=20 id=picTitle_1 value="「夜宴」搞恶图片1" title="说明"></input>
    </div>
    <div style="background:#cdcdcd">
        图片二:
        <input maxlength=2048 size=25 id=picUrl_2 value="http://staryxy.googlepages.com/diner2.jpg" title="图片URL地址"></input>
        链接地址:<input maxlength=2048 size=25 id=picLink_2 value="" title="链接地址"></input>
        说明:<input maxlength=2048 size=20 id=picTitle_2 value="「夜宴」搞恶图片2" title="说明"></input>
    </div>
    <div style="background:#eeeeee">
        图片三:
        <input maxlength=2048 size=25 id=picUrl_3 value="http://staryxy.googlepages.com/diner4.jpg" title="图片URL地址"></input>
        链接地址:<input maxlength=2048 size=25 id=picLink_3 value="" title="链接地址"></input>
        说明:<input maxlength=2048 size=20 id=picTitle_3 value="「夜宴」搞恶图片3" title="说明"></input>
    </div>
    <div style="background:#cdcdcd">
        图片四:
        <input maxlength=2048 size=25 id=picUrl_4 value="http://staryxy.googlepages.com/diner7.jpg" title="图片URL地址"></input>
        链接地址:<input maxlength=2048 size=25 id=picLink_4 value="" title="链接地址"></input>
        说明:<input maxlength=2048 size=20 id=picTitle_4 value="「夜宴」搞恶图片4" title="说明"></input>
    </div>
    <div style="background:#eeeeee">
        图片五:
        <input maxlength=2048 size=25 id=picUrl_5 value="http://staryxy.googlepages.com/diner8.jpg" title="图片URL地址"></input>
        链接地址:<input maxlength=2048 size=25 id=picLink_5 value="" title="链接地址"></input>
        说明:<input maxlength=2048 size=20 id=picTitle_5 value="「夜宴」搞恶图片5" title="说明"></input>
    </div>
    <div style="background:#cdcdcd">
        图片六:
        <input maxlength=2048 size=25 id=picUrl_6 value="http://staryxy.googlepages.com/diner12.jpg" title="图片URL地址"></input>
        链接地址:<input maxlength=2048 size=25 id=picLink_6 value="" title="链接地址"></input>
        说明:<input maxlength=2048 size=20 id=picTitle_6 value="「夜宴」搞恶图片6" title="说明"></input>
    </div>
    <div style='cursor:hand' onclick=close_open('editmore')><li>更多(推荐6张以下,否则说明将看不到)</li></div>
    <div id='editmore' style='display:none;'>
        <div style="background:#eeeeee">
            图片七:
            <input maxlength=2048 size=25 id=picUrl_7 value="" title="图片URL地址"></input>
        链接地址:<input maxlength=2048 size=25 id=picLink_7 value="" title="链接地址"></input>
        说明:<input maxlength=2048 size=20 id=picTitle_7 value="" title="说明"></input>
        </div>
        <div style="background:#cdcdcd">
            图片八:
            <input maxlength=2048 size=25 id=picUrl_8 value="" title="图片URL地址"></input>
        链接地址:<input maxlength=2048 size=25 id=picLink_8 value="" title="链接地址"></input>
        说明:<input maxlength=2048 size=20 id=picTitle_8 value="" title="说明"></input>
        </div>
        <div style="background:#eeeeee">
            图片九:
            <input maxlength=2048 size=25 id=picUrl_9 value="" title="图片URL地址"></input>
        链接地址:<input maxlength=2048 size=25 id=picLink_9 value="" title="链接地址"></input>
        说明:<input maxlength=2048 size=20 id=picTitle_9 value="" title="说明"></input>
        </div>
    </div>
</div>
<div>
    <input type=button onclick='javascript:genCode();' value=生成代码>
    </input>
</div>
</div>

<div style="margin-top:5px;background:#9abcde">
<div onclick=close_open('code')  style='cursor:hand'><li>代码</li></div>
<div id='code' style='margin-left:15px;display:none;'>
<TEXTAREA rows="15" id="ShowCode" style="width:100%">
<!--此处显示结果代码-->
</TEXTAREA>
</div>
<div>
    <INPUT onclick="runEx('ShowCode')"  type="button" value="运行此代码"/>
    <INPUT onclick="doCopy('ShowCode')"  type="button" value="复制此代码"/>
    [Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
</div>
</div>

<div style="margin-top:5px;background:#9abcde;">
    <div onclick=close_open('show')  style='cursor:hand'><li>显示效果</li></div>
    <div id='show' title="显示效果" align=center style="margin-left:15px;display:none;background:#abcdef">
    还没有
    </div>
</div>
</div>

(0)

相关推荐

  • JavaScript实现页面滚动图片加载(仿lazyload效果)

    为什么写这篇文章? 1.优化页面很实用的方法,技术实现不难: 2.搜索了相关内容的文章,好像都是用jQuery的方法,可是如果不用jQuery的站长难道就不能用这种方法了么: 3.做技术分享也是在让更多人帮自己测试,因为这个本人木有在项目中实际用到,都是自己琢磨的,所有如果有问题请大家指出,先谢谢了: 4.这个月的博客还没写: 5.刚好木有工作任务,此时不写更待何时... 现在的页面大多都具有的特点 - 内容丰富,图片较多:像我们经常浏览的淘宝,京东,团购网站之类的(本人网购控,属于一个月不在网

  • 链接图片无缝(无间断)向左平滑滚动Js版代码

    向左无缝滚动 body,html,div,a{ margin:0; padding:0} #demo { background: #FFF; overflow:hidden; border: 1px dashed #CCC; width: 500px; } #demo img { border: 3px solid #F2F2F2; } #indemo { float: left; width: 800%; } #demo1 { float: left; } #demo2 { float: le

  • js jquery做的图片连续滚动代码

    核心代码如下,大家可以参考 复制代码 代码如下: <script src="/js/jquery.js"></script>  <script>  $(document).ready(function(){ $(".bannerbutton li").each(                       function(){                              $(this).click(        

  • js实现用滚动条来放大缩小图片的代码

    这段时间比较闲,就搞了这么一个功能来练练手. 因为没有系统的学习过javascript,很多东西都是现学现用.请大家多提宝贵意见,谢谢 无标题文档 //---------------------------------------------------------------------------------------------- // 功能说明:用于放大图片的滚动条,可放大至图片的原始大小.在ie6,ie7,ff1.5下可用 // 使用方法:在图片代码里加上resizeable=1,同

  • JS图片无缝、平滑滚动代码

    非常平滑的JS图片滚动特效代码,无缝循环,速度可自定义,鼠标悬停时停止.它的特点是JS和图片地址分离,这样做你就经易的从数据库动态调用每张图片的地址,方便控制,因此它非常的应用. 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <ht

  • js实现图片无缝滚动特效

    首先,无缝滚动的第一个重点就是--动.关于怎么让页面的元素节点动起来,这就得学明白关于JavaScript中定时器的相关知识. JS中的创建定时器的方法包括两种:setTimeout和setInterval.首先它们接收的参数相同:第一个参数是一个函数,用于定时器执行,第二个参数是一个数字,代表过多少毫秒之后定时器执行函数.它们的不同在于:setTimeout 是在经过指定的时间之后,只执行一次函数,而setInterval,则是每间隔指定时间,就执行函数一次,说简单点的话,就是setInter

  • JS简单的轮播的图片滚动实例

    [javascript]  复制代码 代码如下: var forimg = function (foritem, hoverStop, defaultfor) {          var _foritem = foritem.constructor == jQuery ? foritem : $(foritem);          var imgarr = [              { "z-index": 1, "width": 100, "he

  • js+div实现图片滚动效果代码

    横向 <div id=demo style="overflow:hidden;width:200px;border:2px solid #e0e0e0;padding:2px;" onmouseover="stopscroll();" onmouseout="doscroll()"> <div id="demo1" style="white-space:nowrap;padding:0;"

  • JavaScript实现简单精致的图片左右无缝滚动效果

    本文实例讲述了JavaScript实现简单精致的图片左右无缝滚动效果.分享给大家供大家参考,具体如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"

  • JS实现div内部的文字或图片自动循环滚动代码

    复制代码 代码如下: <style type="text/css"> .content{width:500px;height:300px;position:absolute;left:200px;top:100px;border:solid 2px red;padding:10px;overflow:hidden} dl{width:400px;height:30px;border:1px solid black;} </style> <div class

  • JS实现图片横向滚动效果示例代码

    复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv=&qu

  • javascript 不间断的图片滚动并可点击

    css: 复制代码 代码如下: <style type="text/css"> .rollBox { width: 704px; overflow: hidden; padding: 12px 0 5px 6px; } .rollBox .LeftBotton { height: 52px; width: 19px; background: url(jt.gif) no-repeat 11px 0; overflow: hidden; float: left; displa

随机推荐