Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alcoceba/ngcarouseldirective
A simple NativeScript + Angular 4 images carousel for iOS and Android
https://github.com/alcoceba/ngcarouseldirective
angular angular-carousel image-carousel image-slider nativescript-angular nativescript-carousel nativescript-plugin nativescript-slides
Last synced: 5 days ago
JSON representation
A simple NativeScript + Angular 4 images carousel for iOS and Android
- Host: GitHub
- URL: https://github.com/alcoceba/ngcarouseldirective
- Owner: alcoceba
- Created: 2017-06-25T17:23:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-18T09:31:30.000Z (over 5 years ago)
- Last Synced: 2024-11-09T08:02:04.021Z (5 days ago)
- Topics: angular, angular-carousel, image-carousel, image-slider, nativescript-angular, nativescript-carousel, nativescript-plugin, nativescript-slides
- Language: TypeScript
- Homepage:
- Size: 13 MB
- Stars: 9
- Watchers: 2
- Forks: 8
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# {N} + Angular Carousel Slider
A simple NativeScript + Angular images carousel for iOS and Android.Tested on:
* Nativescript 4
* Typescript 3
* Angular 6You can download older versions [here](https://github.com/alcoceba/ngCarouselDirective/releases) for previous versions of Angular and Nativescript.
I would appreciate any feedback as well as bug reporting, suggestions or changes - please create an issue.
## Demo
You can check a [reference application here](https://github.com/alcoceba/ngCarouselDirectiveDemo) created to show how to integrate the "{N} + Angular Carousel Slider".
iOs | Android
:-------------------------:|:-------------------------:
![](https://github.com/alcoceba/ngCarouselDirectiveDemo/blob/master/demo/ios.gif?raw=true)|![](https://github.com/alcoceba/ngCarouselDirectiveDemo/blob/master/demo/android.gif?raw=true)## Getting started
[See demo](https://github.com/alcoceba/ngCarouselDirectiveDemo) for further details.
1. Download and install the module via npm to your Nativescript project:
cd your_tns_project_path/
npm install nativescript-ng2-carousel --save2. Add the CarouselDirective class to the declarations NgMoudle metadata:
@NgModule({
declarations: [AppComponent, CarouselDirective],
bootstrap: [AppComponent],
imports: [NativeScriptModule],
schemas: [NO_ERRORS_SCHEMA]
})3. To use the CarouselDirective, create a template that applies the directive as an attribute to a paragraph GridLayout element:
<GridLayout [carousel]="images" carouselLabelOverlay="true" carouselSpeed="2000">
</GridLayout>Add images **from URL** to your component:
@Component({
selector: "my-app",
templateUrl: "app.component.html"
})
export class AppComponent {protected images: Array = [];
constructor() {
this.images = [
{ title: 'Image 1', url: 'https://unsplash.it/400/300/?image=867' },
{ title: 'Image 2', url: 'https://unsplash.it/400/300/?image=870' },
{ title: 'Image 3', url: 'https://unsplash.it/400/300/?image=876' },
];
}
}You can also add images from your **assets folder** or **resources folder** using `file` attribute instead of `url` attribute:
@Component({
selector: "my-app",
templateUrl: "app.component.html"
})
export class AppComponent {protected images: Array = [];
constructor() {
this.images = [
{ title: 'Image 1', url: 'https://unsplash.it/400/300/?image=867' },
{ title: 'Image 2', file: '~/assets/sea-sunset.jpg' },
{ title: 'Image 2', file: 'res://mountain' }, // Resource without extension
{ title: 'Image 3', url: 'https://unsplash.it/400/300/?image=876' },
];
}
}4. CSS styling:
/** Slider image */
.slider-image {}
/** Slider title format */
.slider-title {
color: #fff;
font-weight: bold;
background-color: rgba(125, 125, 125);
padding: 8;
text-align: center;
vertical-align: bottom;
}/** Arrows */
.arrow {
color: #ffffff;
font-size: 32;
vertical-align: middle;
padding: 10;
}/** Arrow left wrapper */
.arrow.arrow-left {}
/** Arrow right */
.arrow.arrow-right {}
## Supported attributes
Currently directive supported attributes:
* **carousel** list of images as JSON or CarouselSlide class, accepted parameters (title?, url?, file?)
* **carouselSpeed** _(optional)_ defines the interval (number in ms) to wait before the next slide is shown
* **carouselAnimationSpeed** _(optional)_ defines the animation speed (number in ms)
* **carouselArrows** _(optional)_ arrow type, accepted values _none_, _small_, _normal_, _bold_ or _narrow_ (default _normal_)
* **carouselLabelOverlay** _(optional)_ silde title over image, accepted values _true_ or _false_ (default false)## Changelog
**Version 0.1.0**
* Fix bug "Unable to find directive"
* Demo folder moved https://github.com/alcoceba/ngCarouselDirectiveDemo
* Improved documentation
* Added requiered dependencies
* Updated to Nativescript 4 + Angular 6**Version 0.0.5**
* Possibility to load images from resources folder in Android and iOS
**Version 0.0.4**
* Updated to Nativescript 3 + Angular 4
**Version 0.0.3**
* Package.json fixes
* Minor fixes