13

如何在 Angular JS 中使用颜色框(也欢迎花式框或灯箱),我应该为它编写指令吗?还有其他方法吗?

这是我的 HTML:

...
<h2 class="box-header">
    <i class="icon-hdd"></i>    
    <div class="btn-group pull-right">      
        <a class="btn btn-mini">
            <i class="icon-zoom-in"></i>
            Expand
        </a>
    </div>
</h2>   
<div id="open-with-colorbox">
...
</div>
...

用户将单击展开按钮,具有 open-with-colorbox id 的 div 将作为颜色框打开。

PS:我是 Angular JS 的新手,这就是为什么我正在寻找如何使用 colorbox 的解决方案,我在我的应用程序中使用 twitter bootstrap。

4

2 回答 2

15

写一个指令,这是最好的选择。

指令示例:

app.directive('colorbox', function() {
  return {   
    restrict: 'AC',    
    link: function (scope, element, attrs) {        
      $(element).colorbox(attrs.colorbox);     
    }
  };  
});

HTML:

<a colorbox="{transition:'fade'}" href="...">Image</a>
于 2013-02-01T09:16:15.607 回答
3

我在我的代码中尝试了 bmleite 指令,但它不起作用。cboxElement 类已添加到元素中,但单击时颜色框未打开。最后我发现这个指令就像一个魅力。

app.directive('colorbox', function($compile, $rootScope){
  return {
    link: function(scope, element, attrs){
      element.click('bind', function(){
        $.colorbox({
          href: attrs.colorbox,
          onComplete: function(){
            $rootScope.$apply(function(){
              var content = $('#cboxLoadedContent');
              $compile(content)($rootScope);      
            })
          }
        });
      });
    }
  };
});

然后在您的 html 部分中使用它:

<img src="path_to_image" colorbox="path_to_large_image" />
于 2014-01-09T13:45:07.287 回答