JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" maxlength="70" name="title">
<input type="file" class="torrent" name="torrent" />
<div class="chlenodevka"><img class="imgTorrent" src="http://23ch.ru/favicon.png" /></div>
<input class="lolka" type="submit" />
JavaScript
$(function(){
$('.torrent').hide();
});
var show = false;
$('.imgTorrent').click(function(){
if(show == false){
show = true;
$('.torrent').show().fadeIn(1000);
} else {
show = false;
$('.torrent').hide().fadeOut(1000);
}
});