को एनिमेट नहीं करता है क्या आप जानते हैं कि मैं jQuery के साथ पूर्ण-स्थिति वाले div को एनिमेट क्यों नहीं कर सकता?jQuery एनिमेट - पूर्ण DIV
शो यहाँ खुश (यहाँ मेरे उदाहरण है):
HTML:
<html>
<body>
<div class="test">
<div class="box">
<div class="arrow"></div>
</div>
<a href="#" class="btnStartAni">Animate</a>
</div>
</body>
सीएसएस:
.test { margin: 0; padding: 0;}
.test .box { width: 150px; height: 140px; background-color: red; position: relative; }
.test .box .arrow { width: 50px; height: 50px; background-color: black; position:
absolute; bottom: 0; right: -50px;}
जावास्क्रिप्ट:
jQuery(".test a.btnStartAni").on("click", function(e){
e.preventDefault();
jQuery(".box").animate({ width: 400}, 800);
});
ब्लैक बॉक्स एनीमेशन छिपाने के दौरान होता है! लेकिन मुझे नहीं पता क्यों?
क्या आप कृपया मेरी मदद कर सकते हैं?
jQuery 'अतिप्रवाह कहते हैं। यकीन नहीं है कि क्यों। –