Skip to content

Instantly share code, notes, and snippets.

@porfidev
Last active August 29, 2015 14:27
Show Gist options
  • Save porfidev/d2e41291ddbbb9b48c64 to your computer and use it in GitHub Desktop.
Save porfidev/d2e41291ddbbb9b48c64 to your computer and use it in GitHub Desktop.
Carrusel con BS3 y AngularJS
<?php
/**
* Created by PhpStorm.
* User: elporfirio
* Date: 15/08/15
* Time: 14:26
*/
#Datos para conexión
$domain = "localhost";
$database = "coleccion";
$user = "homestead";
$password = "secret";
#Conectarse a la base de datos
try {
$dbConnection = new PDO(
'mysql:host=' . $domain . ';dbname=' . $database .';port=3306',
$user,
$password,
array(
PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8",
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION)
);
//$dbConnection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $ex){
echo "<strong>Error de Conexión: </strong>" . $ex->getMessage() . "<br>";
die();
}
#Consultar datos
try{
$query = 'SELECT * FROM imagenes';
$stmt = $dbConnection->prepare($query);
if($stmt->execute()){
$queryResult = $stmt->fetchAll(PDO::FETCH_ASSOC);
echo json_encode($queryResult);
}
} catch (PDOException $ex){
echo "<strong>Error de ejecución: </strong>" . $ex->getMessage() . "<br>";
die();
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
</head>
<body ng-app="pruebasCarrusel">
<div ng-view></div>
<!-- Angular -->
<script src="//code.angularjs.org/1.4.4/angular.min.js"></script>
<script src="//code.angularjs.org/1.4.4/angular-route.min.js"></script>
<script src="js/appCarrusel.js"></script>
<script src="js/directive/carrusel.js"></script>
<script src="js/routes.js"></script>
<script src="js/controller/data-carrusel.js"></script>
<!--Jquery -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>
/**
* Created by elporfirio on 15/08/15.
*/
angular.module('pruebasCarrusel', ['ngRoute']);
/**
* Created by elporfirio on 15/08/15.
*/
angular.module('pruebasCarrusel')
.controller('obtenerDatos', [
'$scope',
'$http',
function($scope, $http){
$scope.imagenesArray = [
];
$scope.llamarDatosImagenes = function(){
$http.get('functions.php').
then(function(response) {
$scope.imagenesArray = response.data;
}, function(response) {
alert('ocurrio un error');
});
};
$scope.llamarDatosImagenes();
}
]);
/**
* Created by elporfirio on 15/08/15.
*/
angular.module('pruebasCarrusel')
.directive('carrusel', function(){
return {
restrict: 'E',
templateUrl: 'templates/carrusel.html',
controller: 'obtenerDatos',
replace: true,
scope: {
imagenesArray : '@'
},
link: function(scope,element, attrs){
var $element = $(element);
$element.carousel();
$element.find('#izquierda').on("click", function(){
$element.carousel('prev');
});
$element.find('#derecha').on("click", function(){
$element.carousel('next');
});
}
}
});
/**
* Created by elporfirio on 15/08/15.
*/
angular.module('pruebasCarrusel')
.config(function($routeProvider){
$routeProvider.when('/carrusel', {
templateUrl: 'templates/inicio.html'
});
});
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" ng-repeat="(index, imagen) in imagenesArray"
data-slide-to="{{index}}" class="{{ (index == 0) ? 'active' : ''"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div ng-repeat="(index, imagen) in imagenesArray" class="{{ (index == 0) ? 'item active' : 'item' }}">
<img ng-src="img/{{ imagen.urlimagen }}" alt="...">
<div class="carousel-caption">
{{ imagen.descripcion }}
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" id="izquierda" href="" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" id="derecha" href="" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<carrusel imagenes="{{ imagenesArray }}"></carrusel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment