当前位置: 首页>>代码示例>>PHP>>正文


PHP zmf::lazyImg方法代码示例

本文整理汇总了PHP中zmf::lazyImg方法的典型用法代码示例。如果您正苦于以下问题:PHP zmf::lazyImg方法的具体用法?PHP zmf::lazyImg怎么用?PHP zmf::lazyImg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在zmf的用法示例。


在下文中一共展示了zmf::lazyImg方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

}
?>
    </div>
  </div> 
</div>
<?php 
$this->renderPartial('/index/floatNav');
if (Yii::app()->getController()->id == 'index' && in_array(Yii::app()->getController()->getAction()->id, array('index'))) {
    ?>
<div class="header-ppt">
  <div class="header-bg">
      <img id="backdrop" class="lazy" data-original="<?php 
    echo zmf::attachBase('site');
    ?>
daodao/bg.jpg" src="<?php 
    echo zmf::lazyImg();
    ?>
" width="100%" />
  </div>
<div class="header-search-bg"></div>
<div class="header-search">
  <div class="search-login" id="main-search-holder"> 
    <h1 class="logo-title text-center">完美你的旅行计划</h1>
    <form role="form" action="<?php 
    echo zmf::config("domain") . Yii::app()->createUrl("posts/search");
    ?>
"  method="GET">
        <div class="input-group">
            <input type="text" class="form-control" placeholder="<?php 
    echo zmf::t('search_placeholder');
    ?>
开发者ID:ph7pal,项目名称:wedding,代码行数:31,代码来源:main.php

示例2: isset

<?php

$width = isset($width) ? (int) $width : 124;
$height = $width * 0.75;
$acss = isset($acss) ? $acss : '';
//avatar css
$lcss = isset($lcss) ? $lcss : '';
//link css
$icon = Position::getPoiIcon($classify);
$_url = isset($url) ? $url : array('position/images', 'id' => $id);
if ($img) {
    echo CHtml::link(CHtml::image(zmf::lazyImg(), $title . '的封面图', array('width' => $width, 'height' => $height, 'class' => $acss, 'data-original' => $img)), $_url, array('class' => $lcss));
} else {
    echo CHtml::link('<div class="text-center faceimg faceimg-' . $width . '"><span class="' . $icon . '"></span></div>', $_url, array('class' => $lcss));
}
开发者ID:ph7pal,项目名称:wedding,代码行数:15,代码来源:_faceimg.php


注:本文中的zmf::lazyImg方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。