189 8069 5689

Angular中封装fancyBox(图片预览)遇到问题小结

首先在官网下载最新版的fancyBox(一定要去最新网站,以前依赖的jquery版本偏低),附上链接:

成都创新互联公司专注于企业营销型网站、网站重做改版、建湖网站定制设计、自适应品牌网站建设、H5场景定制成都商城网站开发、集团公司官网建设、外贸网站建设、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为建湖等各大城市提供网站开发制作服务。

http://fancyapps.com/fancybox/3/

然后在项目中引用jquery,然后在引用jquery.fancybox.min.css和jquery.fancybox.min.js。

如果需要动画和鼠标滚轮滚动效果还可以引入他提供的相关工具文件。

1.你可以通过链接.css和.js在你的html文件来安装fancyBox 。确保您也加载了jQuery库。以下是用作示例的基本HTML模板

<!DOCTYPE html>

 
 我的页面</ title>
 <! - CSS - >
 <link rel =“stylesheet”type =“text / css”href =“jquery.fancybox.min.css”>
</ HEAD>
<BODY>
 <! - 您的HTML内容到这里 - >
 <! - JS - >
 <script src =“// code.jquery.com/jquery-3.2.1.min.js”> </ script>
 <script src =“jquery.fancybox.min.js”> </ script>
</ BODY>
</ HTML></pre></div><p>2.通过通过Bower或npm安装工具安装</p><div><pre># Bower
bower install fancybox --save
# NPM
npm install @fancyapps/fancybox --save</pre></div><p>3.项目中通过外部引用,一般放在lib文件夹下(我采用的是这种方法)</p><p>在lib下新建一个文件目录fancy文件夹,然后引入下载好的.js和.css,在gulpfile.js添加自动化打包压缩任务,放在css目录中的lib.min.css和lib.min.js,在入口index.html中引入压缩后的文件。</p><p>以本fancyBox插件举例:</p><div><pre>gulp.task('build-lib-js', ['build-clean-third-lib-js'], function () {
  var thirdLibJs = gulp.src([
  //外部引用js
  './lib/fancybox/jquery.fancybox.min.js',
  ])
  .pipe(uglify())
  .pipe(concat('lib.min.js', {newLine: '\r\n'}))
  .pipe(gulp.dest('js'));
  return merge.apply(null, thirdLibJs);
  });
gulp.task('build-lib-css', ['build-clean-lib-css'], function () {
  var thirdLibCss = gulp.src([
      //外部引用css
    './lib/fancybox/jquery.fancybox.min.css'
  ])
    .pipe(concat('lib.min.css', {newLine: '\r\n'})) //放在哪个文件中
    .pipe(gulp.dest('css'));//打包输出目录(在哪个目录下)
  return merge.apply(null, thirdLibCss);
});</pre></div><p>封装在angular自定义组件中</p><p>html模块:</p><div><pre><img-box img-url="'xxxxxx.png'" img-></img-box></pre></div><p>directive.js模块:</p><div><pre>var appModule = angular.module('app.core');
appModule.directive('imgBox',imgBox);</pre></div><div><pre>function imgBox() {
  return {
    restrict:'AE',
    transclude:true,
    scope:{
      imgUrl:"=",
      imgStyle:'='
    },
    template:'<a class="imageBox" href="{{imgUrl}}" rel="external nofollow" rel="external nofollow" rel="external nofollow" data-fancybox><img  src="{{imgUrl}}" th:src="${cdn.url('+"'{{imgUrl}}'"+')}" /></a>',
    link:function (scope,elem,attrs) {
      $(".imageBox").fancybox();
    },
  }
}</pre></div><p>官方写法:</p><div><pre><a href="/upload/otherpic56/66509.jpg" data-fancybox="images" data-width="2048" data-height="1365">
    <img src="/upload/otherpic56/66510.jpg" />
  </a>
  <a href="/upload/otherpic56/66511.jpg" data-fancybox="images" data-width="2048" data-height="1366">
    <img src="/upload/otherpic56/66513.jpg" />
  </a>
  <a href="/upload/otherpic56/66527.jpg" data-fancybox="images" data-width="2048" data-height="1365">
    <img src="/upload/otherpic56/66539.jpg" />
  </a></pre></div><p>标注:data-fancybox使用图片预览插件,三个值都为images表示在一个图片组内 data-width data-height 图像的真实宽高度 data-caption 标题信息</p><p>启用方法: </p><div><pre><script type="text/javascript">
 $("[data-fancybox]").fancybox({
 // Options will go here
 });
  </script></pre></div><p>遇到的问题:</p><p>1.如果使用低版本的图片预览插件,回报Cannot read property 'msie' of undefined的错,原因低版本似乎使用$ .browser方法,但是从jQuery 1.9起已被删除</p><p>2.在template或者templateUrl要使用html中传入的imgUrl值,不能直接使用imgUrl或者scope.imgUrl获取。</p><p>方法:</p><div><pre>template:'<a class="imageBox" href="{{imgUrl}}" rel="external nofollow" rel="external nofollow" rel="external nofollow" data-fancybox><img  src="{{imgUrl}}" th:src="${cdn.url('+"'{{imgUrl}}'"+')}" /></a>'</pre></div><p>或者</p><div><pre>template:'<a class="imageBox" ng-href="{{imgUrl}}" rel="external nofollow" rel="external nofollow" rel="external nofollow" data-fancybox><img  ng-src="{{imgUrl}}" th:src="${cdn.url('+"'{{imgUrl}}'"+')}" /></a>'</pre></div><p>后面的th:src可以不用拼接,如果你项目中是用cdn上的资源图片,可以使用。</p><p><strong>总结</strong></p><p>以上所述是小编给大家介绍的Angular中封装fancyBox(图片预览)遇到问题小结,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对创新互联网站的支持!</p>            
            
                        <br>
            网页标题:Angular中封装fancyBox(图片预览)遇到问题小结            <br>
            本文链接:<a href="http://jkwzsj.com/article/gpegid.html">http://jkwzsj.com/article/gpegid.html</a>
        </div>
    </div>
    <div class="other">
        <h3>其他资讯</h3>
        <ul>
            <li>
                    <a href="/article/dceojcj.html">阿里云服务器cpu的区别 阿里云服务器8核32g</a>
                </li><li>
                    <a href="/article/dceojce.html">java进销存系统代码 javaweb进销存管理系统</a>
                </li><li>
                    <a href="/article/dceojci.html">腾讯云服务器挖矿行为自查 腾讯云挖xmr</a>
                </li><li>
                    <a href="/article/dceojsp.html">包含sap财务系统教程教学的词条</a>
                </li><li>
                    <a href="/article/dceojcp.html">注册域名费用怎么算的 注册域名要花多少钱</a>
                </li>        </ul>
    </div>
</div>
<footer>
    <div class="foot container">
        <div class="footl fl">
            <h3>联系我们</h3>
            <dl>
                您好HELLO!<br>
                感谢您来到成都网站建设公司,若您有合作意向,请您为我们留言或使用以下方式联系我们,

                我们将尽快给你回复,并为您提供真诚的设计服务,谢谢。
            </dl>
            <ul>
                <li>电话:028- <span>86922220 18980695689</span></li>
                <li>商务合作邮箱:631063699@qq.com</li>
                <li>合作QQ: 532337155</li>
                <li>成都网站设计地址:成都市青羊区锣锅巷31号五金站写字楼6楼</li>
            </ul>
        </div>
        <div class="footr fr">
            <h3>乐尚佳建站工作室</h3>
            <dl>
                成都乐尚佳网站建设公司拥有多年以上互联网从业经验的精英团队,始终保持务实的风格,以"帮助客户成功"为已任,专注于提供对客户有价值的服务。

                我们已为众企业及上市公司提供专业的网站建设服务。我们不只是一家网站建设的网络公司;我们对营销、技术、管理都有自己独特见解,乐尚佳建站采取“创意+综合+营销”一体化的方式为您提供更专业的服务!
            </dl>
            <h3>乐尚佳观点</h3>
            <dl>
                相对传统的成都网站建设公司而言,乐尚佳鼎是互联网中的网站品牌策划精英,我们精于企业品牌与互联网相结合的整体战略服务。<br>
                我们始终认为,网站必须注入企业基因,真正使网站成为企业vi的一部分,让整个网站品牌策划体系变的深入而持久。
            </dl>
        </div>
    </div>
    <div class="link">
        <div class="container"> <span> 友情链接:</span>
            <a href="http://www.cdxwcx.cn/tuoguan/meishan.html" title="眉山服务器托管" target="_blank">眉山服务器托管</a>   <a href="https://www.cdxwcx.com/tuiguang/" title="成都网络营销" target="_blank">成都网络营销</a>   <a href="http://www.cxjianzhan.com/mobile/" title="wap网站制作" target="_blank">wap网站制作</a>   <a href="http://www.cxhlcq.com/zhizuo/" title="重庆网站制作" target="_blank">重庆网站制作</a>   <a href="http://www.nengjingkeji.cn/" title="成都能净科技" target="_blank">成都能净科技</a>   <a href="https://www.scvps.cn/" title="虚拟主机购买" target="_blank">虚拟主机购买</a>   <a href="http://www.wjzwz.com/" title="温江网站设计" target="_blank">温江网站设计</a>   <a href="https://www.cdcxhl.com/tuoguan/" title="服务器托管" target="_blank">服务器托管</a>   <a href="http://www.hongyifilm.cn/" title="鸿艺文化" target="_blank">鸿艺文化</a>   <a href="http://m.cdcxhl.cn/dingzhi/
" title="定制网站制作" target="_blank">定制网站制作</a>           </div>
    </div>
      <div class="copy">