Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>My Example</title> <style> p { background: gold; padding: 20px; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script> $( function() { $( "button" ).click( function() { $( "p" ).animate({ width: "toggle" }, 1000 ); }); }); </script> <button>Toggle away!</button> <p>Click the button... say... 3 times or more...</p>
Preview