Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE HTML>
- <html>
- <head>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" ></script>
- <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
- <script src="http://code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
- <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
- </head>
- <style>
- * {
- margin-left:auto;
- margin-right:auto;
- width:800px;
- }
- #test {
- width:800px;
- border:1px solid black;
- }
- #test .ad {
- border:2px solid red;
- width:25px;
- height:25px;
- float:left;
- margin-left:200px;
- }
- #test .ado {
- border:2px solid yellow;
- width:25px;
- height:25px;
- float:left;
- }
- </style>
- <div id="test">
- <div class="ad">ad</div>
- <div class="ado">ado</div>
- <div style="clear:left;"></div>
- </div>
- <script>
- $(document).ready(function()
- {
- $("#test").click(function()
- {
- $("#test").animate({ left: '-12%'});
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement