Created
December 30, 2012 16:18
-
-
Save pafnuty/4413555 to your computer and use it in GitHub Desktop.
Картика с описанием
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Картинка с описанием</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script> | |
<script> | |
jQuery(document).ready(function($) { | |
$('img').each(function(e) { | |
$(this).wrap('<div class="wrap-description" />') | |
$(this).after('<p class="description">'+$(this).attr('alt')+'</p>') | |
}); | |
}); | |
</script> | |
<style> | |
body { | |
width: 600px; | |
margin: 0 auto; | |
} | |
img { | |
display: block; | |
} | |
</style> | |
</head> | |
<body> | |
<img src="http://lorempixel.com/600/200" alt="Lorem ipsum dolor."> | |
<img src="http://lorempixel.com/600/200" alt="Vel asperiores tempora."> | |
<img src="http://lorempixel.com/600/200" alt="Dolorum recusandae consequuntur!"> | |
<img src="http://lorempixel.com/600/200" alt="Laboriosam deleniti vel?"> | |
<img src="http://lorempixel.com/600/200" alt="Natus tempora fugiat."> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment