Ask questions which are clear, concise and easy to understand.
Ask QuestionPosted by Yashwant Kumar 4 years, 6 months ago
- 4 answers
? ? 4 years, 2 months ago
? ? 4 years, 2 months ago
Month:<select id=m onchange=setCal()> <option value=0>January</option> <option value=1>February</option> <option value=2>March</option> <option value=3>April</option> <option value=4>May</option> <option value=5>June</option> <option value=6>July</option> <option value=7>August</option> <option value=8>September</option> <option value=9>October</option> <option value=10>November</option> <option value=11>December</option> </select> Year:<input type=number length=4 id=y style="width: 40pt;" onchange=setCal() min=1800>
Shravan Thakur 4 years, 3 months ago
Posted by Varsha Chhikara 4 years, 7 months ago
- 0 answers
Posted by Vikas Sharma 4 years, 8 months ago
- 2 answers
Aliza Khan 4 years, 6 months ago
Posted by Mayank Malik 4 years, 8 months ago
- 3 answers
Sofiyan Sofiyan 4 years, 3 months ago
Jyoti Meena Jyoti Meena 4 years, 8 months ago
Posted by Rakesh Kumar 4 years, 8 months ago
- 0 answers
Posted by Smart Knowlege And Fun 4 years, 8 months ago
- 1 answers
Posted by Rohit Sharma 4 years, 8 months ago
- 0 answers
Posted by Parshant Kashyap 4 years, 8 months ago
- 0 answers
Posted by Ajay Kumar 4 years, 8 months ago
- 1 answers
Posted by Ravinder Sharma 4 years, 8 months ago
- 1 answers
Lovekush Lovekush 4 years, 8 months ago
Posted by Abhishek Kumar 4 years, 8 months ago
- 2 answers
Sofiyan Sofiyan 4 years, 3 months ago
Lovekush Lovekush 4 years, 8 months ago
Posted by Hacker A K 4 years, 8 months ago
- 2 answers
Posted by Shiv Am Rawat Rawat 4 years, 8 months ago
- 0 answers
Posted by Himanshu Mishra-Ll 4 years, 8 months ago
- 0 answers
Posted by Sachin Verma 4 years, 8 months ago
- 3 answers
Sofiyan Sofiyan 4 years, 3 months ago
Lovekush Lovekush 4 years, 8 months ago
Posted by Pooja Kanojiya 4 years, 8 months ago
- 0 answers
Posted by विजय Kumar. 4 years, 8 months ago
- 2 answers
Savita Singla 4 years, 8 months ago
Monu Koshik 4 years, 8 months ago
Posted by Ajay Verma 4 years, 8 months ago
- 0 answers
Posted by Ashu Mitru 4 years, 8 months ago
- 1 answers
Posted by Red Rose 4 years, 8 months ago
- 2 answers
Komal Prajapati 4 years, 8 months ago
Posted by Archna Kumari 4 years, 8 months ago
- 3 answers
Sofiyan Sofiyan 4 years, 3 months ago
Bharti Singh 4 years, 8 months ago
Bharti Singh 4 years, 8 months ago
Posted by Kanhaiya Kumar 4 years, 8 months ago
- 0 answers
Posted by Abhi Raj 4 years, 8 months ago
- 0 answers
Posted by Vanshika Mudgal 4 years, 8 months ago
- 1 answers
Posted by Vanshika Mudgal 4 years, 8 months ago
- 0 answers
Posted by Abhishek Pal 4 years, 8 months ago
- 1 answers
Posted by Gourav Dayal 4 years, 8 months ago
- 0 answers
Posted by Dimple Bedi 4 years, 8 months ago
- 2 answers
Arun Arun 4 years, 8 months ago
Posted by Devraj Singh 4 years, 8 months ago
- 2 answers
Abhishek Pal 4 years, 8 months ago
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
? ? 4 years, 2 months ago
HEY FRIENDS (◠‿◕) GOOD NIGHT?!
By Sameer
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script> <script> var a1 = {}; a1.opacityIn = [0,1]; a1.scaleIn = [0.2, 1]; a1.scaleOut = 5; a1.durationIn = 800; a1.durationOut = 600; a1.delay = 500; anime.timeline({ loop: true }) .add({ targets: '.a1 .w-1', opacity: a1.opacityIn, scale: a1.scaleIn, duration: a1.durationIn }) .add({ targets: '.a1 .w-1', opacity: 0, scale: a1.scaleOut, duration: a1.durationOut, easing: "easeInExpo", delay: a1.delay }) .add({ targets: '.a1 .w-2', opacity: a1.opacityIn, scale: a1.scaleIn, duration: a1.durationIn }) .add({ targets: '.a1 .w-2', opacity: 0, scale: a1.scaleOut, duration: a1.durationOut, easing: "easeInExpo", delay: a1.delay }) .add({ targets: '.a1 .w-3', opacity: a1.opacityIn, scale: a1.scaleIn, duration: a1.durationIn }) .add({ targets: '.a1 .w-3', opacity: 0, scale: a1.scaleOut, duration: a1.durationOut, easing: "easeInExpo", delay: a1.delay }) .add({ targets: '.a1', opacity: 0, duration: 500, delay: 500 }); var textWrapper = document.querySelector('.a2 .letters'); textWrapper.innerHTML = textWrapper.textContent.replace(/([^\x00-\x80]|\w)/g, "$&"); anime.timeline({ loop: true }) .add({ targets: '.a2 .line', scaleY: [0,1], opacity: [0.5,1], easing: "easeOutExpo", duration: 700 }) .add({ targets: '.a2 .line', translateX: [0, document.querySelector('.a2 .letters').getBoundingClientRect().width + 10], easing: "easeOutExpo", duration: 700, delay: 100 }) .add({ targets: '.a2 .letter', opacity: [0,1], easing: "easeOutExpo", duration: 600, offset: '-=775', delay: (el, i) => 34 * (i+1) }) .add({ targets: '.a2', opacity: 0, duration: 1000, easing: "easeOutExpo", delay: 1000 }); </script> </body> </html>0Thank You