Created
March 16, 2016 03:54
-
-
Save kranfix/79ee454e16a97ae8465b to your computer and use it in GitHub Desktop.
Code with troubles using materializecss and angular.js
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 class="slider"> | |
<ul class="slides"> | |
<li ng-repeat="img in imgs"> | |
<img src="{{img.ruta}}"> | |
<div class="caption {{img.align}}-align"> | |
<h3>{{img.BigTagline}}</h3> | |
<h5 class="light grey-text text-lighten-3"> | |
{{img.SmallSlogan}}. | |
</h5> | |
</div> | |
</li> | |
</ul> | |
</div> | |
<script> | |
$(document).ready(function(){ | |
$('.slider').slider({full_width: true}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment