Js效果:圖片輪播;選項卡;側面菜單下拉效果;進度條效果;滑動效果;好友名單選中效果;點擊選中顯示效果

來源:互聯網
上載者:User

標籤:

選項卡效果表:

<body>
<div id="aaa">
<div class="bbb" style="width:50px; height:30px; background-color:#3F0" onclick="Show(‘d1‘)">娛樂</div>
<div class="bbb" style="width:50px; height:30px; background-color:#FF0" onclick="Show(‘d2‘)">社會</div>
<div class="bbb" style="width:50px; height:30px; background-color:#00F" onclick="Show(‘d3‘)">體育</div>
<div class="bbb" style="width:50px; height:30px; background-color:#999" onclick="Show(‘d4‘)">軍事</div>
</div>
<div class="ccc" id="d1" style="width:200px; height:200px; background-color:#3F0;">娛樂新聞</div>
<div class="ccc" id="d2" style="width:200px; height:200px; background-color:#FF0; display:none;">社會新聞</div>
<div class="ccc" id="d3" style="width:200px; height:200px; background-color:#00F; display:none;">體育新聞</div>
<div class="ccc" id="d4" style="width:200px; height:200px; background-color:#999; display:none;">軍事新聞</div>
</body>
<script type="text/javascript">
function Show(id)
{
  var attr =document.getElementsByClassName("ccc");
    for(var i=0;i<attr.length;i++)
      {
        attr[i].style.display="none";
      }
  document.getElementById(id).style.display="block";
}

如下:

圖片輪播效果表:

 

<body>
<div id="menu">
<img class="tp" src="11.jpg" width="800" height="250"/>
<img class="tp" src="22.png" width="800" height="250" style="display:none"/>
<img class="tp" src="33.png" width="800" height="250" style="display:none"/>
<img class="tp" src="44.png" width="800" height="250" style="display:none"/>
</div>

 

</body>
<script type="text/javascript">
window.setInterval("Huan()",2000);
var a=document.getElementsByClassName("tp").length-1;
var b=0;
function Huan()
{
  var attr=document.getElementsByClassName("tp");
  b++;
  if(b>a)
    {
      b=0;
    }
  for(var i=0;i<=a;i++)
    {
      attr[i].style.display="none";
    }
      attr[b].style.display="block";
    }
</script>

側面菜單下拉效果:

樣式表裡:.ziwai{display="none"}

<body>
<div id="menu">
<div class="list">首頁</div>
<div class="list">教務專區</div>
<div id="zww" class="list" onclick="Show()">下載專區</div>
<div id="ziwai">
<div class="zi">簡曆檔案下載</div>
<div class="zi">教師評測下載</div>
<div class="zi">其他下載</div>
</div>
<div class="list">個人空間</div>
<div class="list">資料維護</div>
</div>
</body>
<script type="text/javascript">
function Show()
{
    var a=document.getElementById("ziwai");
  if(a.style.display=="none")
    {
      a.style.display="block";
    }
  else
    {
      a.style.display="none";
    }
}
</script>

<div style="width:200px; height:600px; margin-top:30px">

<div class="f" onclick="Xuan(this)" onmouseover="Bian(this)" onmouseout="Hui(this)" xz="0">張三</div>
<div class="f" onclick="Xuan(this)" onmouseover="Bian(this)" onmouseout="Hui(this)" xz="0">李四</div>
<div class="f" onclick="Xuan(this)" onmouseover="Bian(this)" onmouseout="Hui(this)" xz="0">王五</div>
<div class="f" onclick="Xuan(this)" onmouseover="Bian(this)" onmouseout="Hui(this)" xz="0">趙六</div>
<div class="f" onclick="Xuan(this)" onmouseover="Bian(this)" onmouseout="Hui(this)" xz="0">馬七</div>

</div>

 

</body>
<script type="text/javascript">

function Xuan(a)
{
  var attr = document.getElementsByClassName("f");
    for(var i=0;i<attr.length;i++)
      {
        attr[i].style.backgroundColor = "#63C";
        attr[i].setAttribute("xz","0");
      }
        a.setAttribute("xz","1");
        a.style.backgroundColor = "#F63";
}

function Bian(a)
{
  var attr = document.getElementsByClassName("f");

    for(var i=0;i<attr.length;i++)
      {
        if(attr[i].getAttribute("xz")=="0")
          {
            attr[i].style.backgroundColor = "#63C";
          }
      }

  a.style.backgroundColor = "#F63";
}


function Hui(a)
{
  var attr = document.getElementsByClassName("f");

    for(var i=0;i<attr.length;i++)
      {
        if(attr[i].getAttribute("xz")=="0")
          {
            attr[i].style.backgroundColor = "#63C";
          }
      }
}

進度條效果:

<style type="text/css">
*{ margin:0px auto; padding:0px}
#wai{ width:200px; height:10px; border:1px solid #60F;}
#nei{ width:0px; height:10px; background-color:#F33; float:left}
</style>

 

<body>
<div style="width:600px; height:300px; margin-top:30px">


<div id="wai">
<div id="nei">

</div>
</div>

<input type="button" value="開始" onclick="Start()" />
</div>
</body>

 

<script type="text/javascript">

function Start()
{
  Bian();
}

var bfb = 0;
function Bian()
  {
    //將百分比變化
    bfb= bfb+1;

    //改變寬度
    document.getElementById("nei").style.width = bfb+"%";

    //判斷
      if(bfb<100)
        {
          window.setTimeout("Bian()",50);
        }

  }

</script>

滑動效果:

 

<style type="text/css">
*{ margin:0px auto; padding:0px}
#left{ height:600px; background-color:#63C; float:left}
#right{ height:600px; background-color:#F33; float:left}
#btn{ width:30px; height:30px; background-color:#FFF; position:relative; top:285px; color:#60F; font-weight:bold; text-align:center; line-height:30px; vertical-align:middle; float:left}
#btn:hover{ cursor:pointer}
</style>

<body>
<div style="width:1000px; height:600px">

<div id="left" style="width:200px;">
<div id="btn" onclick="Bian()" style="left:185px;">-></div>
</div>
<div id="right" style="width:800px;">
</div>

</div>
</body>

 

<script type="text/javascript">

function Bian()
{
  Dong();
}

//改變大小和位置
function Dong()
  {
    var d1 = document.getElementById("left");
    var d2 = document.getElementById("right");
    var btn = document.getElementById("btn");

    //左側DIV變寬
      var yskd1 = d1.style.width;
      var w1 = yskd1.substr(0,yskd1.length-2);
      var w1 = parseInt(w1)+2;

   d1.style.width = w1+"px";

    //右側DIV變窄
      var yskd2 = d2.style.width;
      var w2 = yskd2.substr(0,yskd2.length-2);
      var w2 = parseInt(w2)-2;
   d2.style.width = w2+"px";

    //將按鈕移動
      var ysjl = btn.style.left;
      var w3 = ysjl.substr(0,ysjl.length-2);
      var w3 = parseInt(w3)+2;
   btn.style.left = w3+"px";

    if(w2>200)
      {
        //自己調自己
        window.setTimeout("Dong()",1);
      }

}

</script>

<div style="width:600px; height:500px; margin-top:20px">

<div style="width:200px; height:300px; float:left">
  <select id="list1" size="10" style="width:200px; height:300px">
    <option>山東</option>
    <option>北京</option>
    <option>河北</option>
    <option>黑龍江</option>
    <option>河南</option>
  </select>
</div>
<div style="width:80px; height:300px; float:left">

    <input type="button" value="單移" id="btn1" style="width:70px; height:30px" onclick="Dan()"/>
    <input type="button" value="全移" id="btn2" style="width:70px; height:30px" onclick="Duo()"/>

</div>
<div style="width:200px; height:300px; float:left">
  <select id="list2" size="10" style="width:200px; height:300px">
  </select>
</div>

</div>

 

function Dan()
{
  //把列表1選中值取出
    var list1 = document.getElementById("list1");
    var v = list1.value;

  //造一個option項
    var s = "<option class=‘o2‘>"+v+"</option>";

  //判斷list2裡面是否有該項
    var attr = document.getElementsByClassName("o2");
    var cz = true;
      for(var i=0;i<attr.length;i++)
        {
          //alert(attr[i].innerHTML);
            if(attr[i].innerHTML==v)
              {
                cz = false;
                  break;
              }
        }

            if(cz)
              {
                //將option項扔到list2
                var list2 = document.getElementById("list2");
                list2.innerHTML +=s;
              }
}


function Duo()
{
  document.getElementById("list2").innerHTML = document.getElementById("list1").innerHTML;
}

 

 

<div style="width:600px; height:100px;">

<select id="year">
</select>
    年
  <select id="month" onchange="FillDay()">
  </select>
      月
    <select id="day">
    </select>
        日

</div>

FillYear();
FillMonth();
FillDay();
function FillYear()
{
  var sj = new Date();
  var nian = sj.getFullYear();

  var s = "";
    for(var i=nian-5;i<nian+6;i++)
      {
        if(i==nian)
          {
            s +="<option selected=‘selected‘>"+i+"</option>";
          }
        else
          {
            s +="<option>"+i+"</option>";
          }
      }

   document.getElementById("year").innerHTML = s;
}

function FillMonth()
{
    var sj = new Date();
    var yue = sj.getMonth()+1;

    var s = "";
      for(var i=1;i<13;i++)
        {
          if(i==yue)
            {
              s +="<option selected=‘selected‘>"+i+"</option>";
            }
          else
            {
              s +="<option>"+i+"</option>";
            }
        }

  document.getElementById("month").innerHTML=s;
}

function FillDay()
{
    var sj = new Date();
    var tian = sj.getDate();

    //取月份求天數
    var yue = document.getElementById("month").value;
    var n = 31;
      if(yue==4 || yue==6 ||yue==9 ||yue==11)
        {
          n = 30;
        }
      else if(yue==2)
        {
          n=28;
        }

  //用迴圈添加
  var s = "";
  for(var i=1;i<n+1;i++)
    {
      if(i==tian)
        {
          s +="<option selected=‘selected‘>"+i+"</option>";
        }
      else
        {
          s +="<option>"+i+"</option>";
        }
    }

      document.getElementById("day").innerHTML = s;

  }

 

點擊選中顯示效果:

 

<style type="text/css">
*{ margin:0px auto; padding:0px}
#xiala{ width:180px; height:33px; border:1px solid #999;text-align:center; line-height:33px; vertical-align:middle; }
#xiala:hover{ cursor:pointer}

 

#zi{width:180px; height:150px; border:1px solid #63C; border-top:0px; display:none}

 

.list{width:180px; height:33px; text-align:center; line-height:33px; vertical-align:middle; border-bottom:1px solid #63C; background-color:#CCC}
.list:hover{ cursor:pointer; background-color:#63C; color:white}

 

</style>

 

<div style="width:700px; height:500px; margin-top:30px">

<div id="xiala" onclick="Show()"></div>
<div id="zi">
<div class="list" onclick="Xuan(this)">山東</div>
<div class="list" onclick="Xuan(this)">淄博</div>
<div class="list" onclick="Xuan(this)">張店</div>
</div>
</div>

 

<script type="text/javascript">
function Show()
{
  document.getElementById("zi").style.display="block";
}


function Xuan(ys)
{
  var v = ys.innerText;

  document.getElementById("xiala").innerText = v;

  document.getElementById("zi").style.display="none";
}
</script>

子功能表顯示隱藏效果:

 

*{ margin:0px auto; padding:0px}
#menu{ width:700px; height:40px; border:1px solid #999; margin-top:30px}
.list{ width:100px; height:40px; text-align:center; line-height:40px; vertical-align:middle; font-size:16px; font-family:微軟雅黑; float:left}
.list:hover{ cursor:pointer; background-color:#63C; color:white}
.ziwai{width:0px; height:0px;position:relative; float:left; top:40px; left:-100px}
.zi{ width:100px; height:100px; background-color:#6C3; display:none }

 

<div id="menu">
<div class=‘list‘ onmouseover="Show(‘z1‘)" onmouseout="YinCang()">首頁</div>
<div class="ziwai" >
<div class="zi" id="z1"></div>
</div>
<div class=‘list‘ onmouseover="Show(‘z2‘)" onmouseout="YinCang()">產品介紹</div>
<div class="ziwai" >
<div class="zi" id="z2"></div>
</div>
<div class=‘list‘ onmouseover="Show(‘z3‘)" onmouseout="YinCang()">公司簡介</div>
<div class="ziwai" >
<div class="zi" id="z3"></div>
</div>
<div class=‘list‘ onmouseover="Show(‘z4‘)" onmouseout="YinCang()">聯絡我們</div>
<div class="ziwai" >
<div class="zi" id="z4"></div>
</div>
<div class=‘list‘ onmouseover="Show(‘z5‘)" onmouseout="YinCang()">新聞動態</div>
<div class="ziwai" >
<div class="zi" id="z5"></div>
</div>
</div>

 

<script type="text/javascript">

function Show(id)
  {
    //讓所有的子功能表隱藏
    var attr = document.getElementsByClassName("zi");

      for(var i=0; i<attr.length;i++)
        {
          attr[i].style.display = "none";
        }

          //讓和該菜單關聯的子功能表顯示
      document.getElementById(id).style.display = "block";
  }

function YinCang()
  {
    var attr = document.getElementsByClassName("zi");

      for(var i=0; i<attr.length;i++)
        {
          attr[i].style.display = "none";
        }
  }

</script>

 

Js效果:圖片輪播;選項卡;側面菜單下拉效果;進度條效果;滑動效果;好友名單選中效果;點擊選中顯示效果

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.