Thanks to everyone that I myself decide my question ........
Here is the fiddle: MyFiddle
<script type="text/javascript">
$(document).ready(function(e){
TweenMax.set($("#container"),{perspective:3000,transformStyle:"preserve-3d", backfaceVisibility:"hidden"});
$("#container div").mouseover(function(e){
var current = $(this);
var nextFirst = $(this).next();
var prevFirst = $(this).prev();
var nextFirst_1 = $(this).nextAll().eq(1);
var prevFirst_1 = $(this).prevAll().eq(1);
var nextFirst_2 = $(this).nextAll().eq(2);
var prevFirst_2 = $(this).prevAll().eq(2);
TweenMax.to(prevFirst_2, 0.1, {
scale:1.1,
rotationX:50,
opacity:0.6,
ease:Quad.easeInOut
});
TweenMax.to(prevFirst_1, 0.1, {
scale:1.2,
rotationX:45,
opacity:0.7,
ease:Quad.easeInOut
});
TweenMax.to(prevFirst, 0.1, {
scale:1.3,
rotationX:35,
opacity:0.8,
ease:Quad.easeInOut
});
TweenMax.to(current, 0.1, {
scale:1.5,
rotationX:0,
opacity:1,
ease:Quad.easeInOut
});
TweenMax.to(nextFirst, 0.1, {
scale:1.3,
rotationX:-35,
opacity:0.8,
ease:Quad.easeInOut
});
TweenMax.to(nextFirst_1, 0.1, {
scale:1.2,
rotationX:-45,
opacity:0.7,
ease:Quad.easeInOut
});
TweenMax.to(nextFirst_2, 0.1, {
scale:1.1,
rotationX:-50,
opacity:0.6,
ease:Quad.easeInOut
});
});
$("#container div").mouseout(function(){
var element = $("#container div");
TweenMax.to(element, 0.1, {
scale:1.0,
rotationX:0,
opacity:0.4,
ease:Quad.easeInOut
});
})
});
</script>