Сообщение от u4enik
|
можна ли сделать так что бы при наведении курсором на этот див классы так же менялись но + еже с правой стороны появлялся еще один див блок..
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
#container {
position: relative;
}
div.navSectorNormal {
width:100px;
height:100px;
margin-right:50px;
float:left;
background:#999999;
}
div.navSectorSelected {
width:120px;
height:100px;
margin-right:30px;
float:left;
background:#777777;
}
#box {
position: absolute;
top: 0;
right: 0;
width:120px;
height:100px;
background:#999;
}
div.navSectorNormal #box {
display: none;
}
div.navSectorSelected #box {
display: block;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<div id='container'>
<div class="navSectorNormal" onmouseover="this.className='navSectorSelected'" onmouseout="this.className='navSectorNormal'">
<a href="#" class="link">DIV 2</a>
<div id='box'>displayDiv</div>
</div>
</div>
</body>
</html>