JSFiddle - React, Tailwind, and code Playground

HTML

<input type="button" value="Как сейчас" />
<input type="button" value="Как хочу" />
<div><img src="http://sysadmin.atomsoznanya.ru/uploads/posts/2012-10/1351436106_screenshot_2012-10-17-01-31-58.png" /></div>

CSS

img { width: 250px; }
div { display: none; }

JavaScript

$("input:first").click(function() {
    $("div").slideDown(2000);
});
$("input:last").click(function() {
    $("img").css({"position": "absolute", "top": "-500px"});
    $("img").animate ({"top": "40"}, 2000);
    $("div").slideDown("slow");
});