Skip to content

Instantly share code, notes, and snippets.

@pastyrMisha
Last active December 14, 2017 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pastyrMisha/952c69e5c7c7e2e28e5c4ec4091f9cca to your computer and use it in GitHub Desktop.
Save pastyrMisha/952c69e5c7c7e2e28e5c4ec4091f9cca to your computer and use it in GitHub Desktop.
эффект приближения картинки
<p id="test">
<img src="https://m-strana.ru/upload/medialibrary/7d6/7d634a1f32fa6122491517638a3e2fd9.jpg"
alt="изображение" title="изображение" id="img" width="200">
</p>
<script type="text/javascript">
$(document).ready(function(){
$("#img").bind("click", function (event) {
$(event.target).parent().css("text-align", "center");
$(event.target).animate ({
width: $(event.target).width() * 5,
width: $(event.target).height() * 5,
}, 3000);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment