我是Angular2的新手,并试图将Angularjs中的owl-carousel转换为Angular2。
以下是owl-carousel实现的index.html文件:
<!DOCTYPE html>
<html ng-app="plunker">
<head>
<meta charset="utf-8" />
<title>AngularJS Plunker</title>
<script>document.write('<base href="' + document.location + '" />');</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.theme.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.transitions.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.js" />
<script data-require="angular.js@1.3.x" src="https://code.angularjs.org/1.3.15/angular.js" data-semver="1.3.15"></script>
<script data-require="jquery@2.1.3" data-semver="2.1.3" src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.js"></script>
<script src="app.js"></script>
</head>
<body ng-controller="MainCtrl">
<data-owl-carousel class="owl-carousel" data-options="{navigation: true, pagination: false, rewindNav : false}">
<div owl-carousel-item="" ng-repeat="item in ::items1" class="item">
<p>{{::item}}</p>
</div>
</data-owl-carousel>
<data-owl-carousel class="owl-carousel" data-options="{navigation: false, pagination: true, rewindNav : false}">
<div owl-carousel-item="" ng-repeat="item in ::items2" class="item">
<p>{{::item}}</p>
</div>
</data-owl-carousel>
</body>
</html>
这是app.js文件:
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.items1 = [1,2,3,4,5];
$scope.items2 = [1,2,3,4,5,6,7,8,9,10];
}).directive("owlCarousel", function() {
return {
restrict: 'E',
transclude: false,
link: function (scope) {
scope.initCarousel = function(element) {
// provide any default options you want
var defaultOptions = {
};
var customOptions = scope.$eval($(element).attr('data-options'));
// combine the two options objects
for(var key in customOptions) {
defaultOptions[key] = customOptions[key];
}
// init carousel
$(element).owlCarousel(defaultOptions);
};
}
};
}).directive('owlCarouselItem', [function() {
return {
restrict: 'A',
transclude: false,
link: function(scope, element) {
// wait for the last item in the ng-repeat then call init
if(scope.$last) {
scope.initCarousel(element.parent());
}
}
};
}]);
这是Angular1的实现,如何为Angular2实施呢?
更新资料
OwlCarousel2 +
Angular2.3.0
ngOnDestroy() {
this.$owlElement.owlCarousel('destroy');
this.$owlElement = null;
}
旧版
以下是angular2猫头鹰轮播实现的app.ts文件:
import {Component} from 'angular2/core';
import { OwlCarousel } from './owl-carousel.component';
@Component({
selector: 'app',
directives: [OwlCarousel],
template: `
<h2>Sample 1</h2>
<owl-carousel [options]="{navigation: true, pagination: false, rewindNav : false}">
<div *ngFor="#item of items1">
<p>{{ item }}</p>
</div>
</owl-carousel>
<h2>Sample 2</h2>
<owl-carousel [options]="{navigation: false, pagination: true, rewindNav : false}">
<div *ngFor="#item of items2">
<p>{{ item }}</p>
</div>
</owl-carousel>
<h2>Sample 3</h2>
<owl-carousel [options]="{navigation: false, pagination: true, rewindNav : false}">
<div *ngFor="#img of images">
<img src="http://lorempixel.com/400/200/{{img}}"/>
</div>
</owl-carousel>`
})
export class App {
items1: array = [1, 2, 3, 4, 5];
items2: array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
images: array = ['sports', 'abstract', 'people', 'transport', 'city', 'technics', 'nightlife', 'animals'];
}
owl-carousel.component.ts
import { Component, Input, ElementRef } from 'angular2/core';
import $ from 'jquery';
import 'owl-carousel';
@Component({
selector: 'owl-carousel',
template: `<ng-content></ng-content>`
})
export class OwlCarousel {
@Input() options: object;
$owlElement: any;
defaultOptions: object = {};
constructor(private el: ElementRef) {}
ngAfterViewInit() {
for (var key in this.options) {
this.defaultOptions[key] = this.options[key];
}
this.$owlElement = $(this.el.nativeElement).owlCarousel(this.defaultOptions);
}
ngOnDestroy() {
this.$owlElement.data('owlCarousel').destroy();
this.$owlElement = null;
}
}
您可以在plunker中看到的完整示例
OwlCarousel2
版本在这里https://plnkr.co/edit/FnZVxB?p=preview
问题内容: 在此处查看轮播:Owl-carousel2 我遇到一个问题,每当将ng-repeat指令应用于轮播时,这些项目都是垂直堆叠而不是水平布局。 如果我不使用ng-repeat并使用静态项目,则它应能正常工作。 有没有我可以写的指令并适用于猫头鹰轮播以保持布局? 另外,引起轮播破裂的ng-repeat是什么? 是否以某种方式剥离了应用于旋转木马的猫头鹰旋转木马类? 注意*如果手动构建列表,则
问题内容: 我有中继器控件来显示某些内容。 它在一个updatepanel内部。页面加载没有问题,但是当onClik消失时。我知道有关ajax和jquery的问题,但是我无法解决问题。我尝试了很多例子。这是我的jQuery 注意:其猫头鹰轮播2 问题答案: 您需要再次触发jQuery绑定。 当UpdatePanel完成加载时触发。
我有多个猫头鹰旋转木马设置在我的主页。我有第一个(关于免费送货的)设置为滑速10000。因为你可以看到所有的幻灯片都以相同的速度变化。 这有什么不起作用的原因吗?我做错什么了吗?
本文向大家介绍你有没有使用过“形似猫头鹰”(例:`* + *{ ... }`) 的选择器?相关面试题,主要包含被问及你有没有使用过“形似猫头鹰”(例:`* + *{ ... }`) 的选择器?时的应答技巧和注意事项,需要的朋友参考一下 以前常用,比如 这样可以给除了第一个以外的指定样式,比如在两个之间加上 现在大多这么写: 可以达到一样的效果
我正在尝试在猫头鹰旋转木马上应用褪色效果,但它似乎不起作用。 正如您在这个fiddle-http://jsfiddle.net/lav911/fha6j/中看到的,我正在加载他们文档中提到的文件。 我是不是漏掉了什么?为什么不是褪色而是滑动?另外,请注意,即使在他们的网站上,淡化也不起作用。 后期编辑:在谷歌Chrome 35和火狐上似乎会褪色,但在谷歌Chrome 36上会滑动。奇怪。