我使用AngularJS和Reveal.js創建幻燈片。顯示需要表格聲明編寫* wrapper *指令AngularJS
<div class="slides">
<section>
</section>
</div>
水平幻燈片。雖然垂直的滑梯有兩個部分:
<div class="slides">
<section>
<section>
</section>
</section>
</div>
我渲染採用了棱角分明此頁:
<div ng-app='myApp' class="reveal">
<div class="slides" ng-controller='MyController'>
<section slide ng-repeat="slide in slides">
</section>
</div>
</div>
<script src="https://raw.github.com/hakimel/reveal.js/master/js/reveal.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.js"></script>
</body>
</html>
幻燈片與多發步驟應該是垂直的。所有其他人應該是水平的。控制器返回步驟並設置顯示:
function MyController($scope) {
$scope.slides = [
{ 'steps': ['a'] },
{ 'steps': ['b1', 'b2'] },
{ 'steps': ['c1'] }
];
setTimeout(function() {
Reveal.initialize({
loop: false,
transition: Reveal.getQueryHash().transition || 'none'
});
}, .1 * 1000);
}
指令需要在步驟中添加新的元素和屬性。這裏是我的醜,尷尬的,必要的,像jQuery的指令:
app.directive('slide', function() {
var wrapContent = function (content) {
return '<h1>' + content + '</h1>';
};
return {
restrict: 'A'
,link: function (scope, element, attrs, controller) {
// resorting to imparative jQuery way
if (scope.slide.steps.length == 1) {
element.html(
wrapContent(scope.slide.steps[0])
);
} else {
var sections = '';
for (i=0,len=scope.slide.steps.length; i < len; ++i) {
sections +=
'<section ' +
function() {
result = '';
if (i !== len-1) {
result = 'data-autoslide="1000" ';
}
return result;
}() +
'>' +
wrapContent(scope.slide.steps[i]) +
'</section>';
}
element.html(sections);
}
}
}
});
我如何寫這使得它看起來像角碼? jsfiddle
我試過編譯,鏈接,替換,ng-switch都無濟於事。
在鏈接結束時初始化3方lib消除了愚蠢的'setTimeout'。謝謝。 OTOH,這仍然比角度更強調。 – zhon 2013-02-09 06:21:40
當然,在Angular中看到的古典聲明式風格是必要的。但是,Reveal.js對於它所期望的DOM是如此具體,並且渲染內容的邏輯足夠複雜,所以我可能會在實際項目中以這種方式編寫它,因爲我相信它更具可讀性。(我實際上還沒有成功創建此指令的聲明版本。) – 2013-02-09 08:50:26