У меня есть страница с тремя полями.То, что я пытаюсь добиться, это когда я нажимаю на третье поле, поле 1 будет затухать на одной скорости, а поле два - на более медленном.
<html>
<head>
<style>
div.box { /* this style applies only to the 'before' transition state */
opacity:1;}
div.fadeAway { /* give the transition rules to "after" state */
opacity:0;
-webkit-transition-property: opacity;
-webkit-transition-duration: 2s; }
div.fadeAway2 { /* give the transition rules to "after" state */
opacity:0;
-webkit-transition-property: opacity;
-webkit-transition-duration: 5s; }
</style>
</script>
</head>
<body>
<div class="box"
style="width:100px;
height:100px;
background-color:green;">
Tap to fade
</div>
<div class="box2"
style="width:100px;
height:100px;
background-color:red;">
Tap to fade
</div>
<div class="box3"
style="width:100px;
height:100px;
background-color:blue;"
this.onclick=".box2 .box3.className = 'fadeaway''fadeaway2'">
Tap to fade
</div>
</body>
</html>
Заранее спасибо залюбая помощь в этом.