案例:手風琴 封裝好的動畫函數在common.js裡面 //function getStyle(element, attr) {...} //function animate(element, json, fn) {...} 手風琴設置的是背景圖嗎,backgroudImage="url(image ...
案例:手風琴
封裝好的動畫函數在common.js裡面 //function getStyle(element, attr) {...} //function animate(element, json, fn) {...}手風琴設置的是背景圖嗎,backgroudImage="url(image/***.jpg)";
當滑鼠進入的時候,當前的寬度變為800,其餘的遍歷並設置為100;
滑鼠離開的時候,所有li寬度變為400
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> ul { list-style: none; } * { margin: 0; padding: 0; } div { width: 1150px; height: 400px; margin: 50px auto; border: 1px solid red; overflow: hidden; } div li { width: 240px; height: 400px; float: left; } div ul { width: 1300px; } </style> </head> <body> <div id="box"> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </div> <script src="common.js"></script> <script> //下麵2個封裝好的函數在common.js裡面 //function getStyle(element, attr) { //function animate(element, json, fn) { //先獲取所有的li標簽 var list = my$("box").getElementsByTagName("li"); for (var i = 0; i < list.length; i++) { list[i].style.backgroundImage = "url(images/" + (i + 1) + ".jpg)"; //滑鼠進入 list[i].onmouseover = mouseoverHandle; //滑鼠離開 list[i].onmouseout = mouseoutHandle; } //進入和離開函數 function mouseoverHandle() { for (var j = 0; j < list.length; j++) { animate(list[j], { "width": 100 });//動畫效果 } animate(this, { "width": 800 }); } function mouseoutHandle() { for (var j = 0; j < list.length; j++) { animate(list[j], { "width": 240 });//動畫效果 } } </script> </body> </html>