效果是醬嬸兒的...
原始代碼
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style> #div1{ width: 200px; height: 200px; background-color: grey; position: absolute; z-index: 20; } #div2{ width: 300px; height: 300px; background-color: red; position: absolute; display:none; } </style>
</head>
<body>
<div id="div1" onmouseover="overSmall()" ></div>
<div id="div2" onmouseout="outBig()"></div>
</body>
<script> var small = document.getElementById('div1'); var big = document.getElementById('div2'); function overSmall() { small.style.display = "none"; big.style.display = "block"; } function outBig() { big.style.display = "none"; small.style.display = "block"; } </script>
</html>
複製代碼
專欄地圖
- [作特效, 學JS] -- 00 開篇
- [作特效, 學JS] -- 01 超連接鼠標移入變大變紅, 鼠標移除還原
- [作特效, 學JS] -- 02 鼠標移入, div變大變紅, 鼠標移出, 回覆原貌
- [作特效, 學JS] -- 03 網頁換膚
- [作特效, 學JS] -- 04 複選框全選
- [作特效, 學JS] -- 05 複選框全選/全不選
- [作特效, 學JS] -- 06 複選框全選/全不選/反選
- [作特效, 學JS] -- 07 網頁選項卡
- [作特效, 學JS] -- 08 倒計時
- [作特效, 學JS] -- 09 正經的 全選和反選
- [作特效, 學JS] -- 10 自動生成表格
- [作特效, 學JS] -- 11 加餐-神奇的正則表達式
- [作特效, 學JS] -- 12 加餐-DOM擴展
- [作特效, 學JS] -- 13 加餐-聊聊BOM