Created
July 11, 2012 08:04
-
-
Save ZachMoreno/3088862 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<div ng-controller="AlbumCtrl"> | |
<ul> | |
<li ng-repeat="image in images"> | |
<img ng-src="{{image.thumbnail}}" alt="{{image.description}}"> | |
</li> | |
</ul> | |
</div> |
This file contains hidden or 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
function AlbumCtrl($scope) { | |
scope.images = [ | |
{"image":"img/tiny-semantics.png", "description":"Image 01 description"}, | |
{"image":"img/tiny-offline-storage.png", "description":"Image 02 description"}, | |
{"image":"img/tiny-device-access.png", "description":"Image 03 description"}, | |
{"image":"img/tiny-connectivity.png", "description":"Image 04 description"}, | |
{"image":"img/tiny-multimedia.png", "description":"Image 05 description"}, | |
{"image":"img/tiny-3d-graphics-effects.png", "description":"Image 06 description"}, | |
{"image":"img/tiny-performance-integration.png", "description":"Image 07 description"}, | |
{"image":"img/tiny-css3.png", "description":"Image 08 description"} | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment