philippfrenzel/yii2pinit

Yii2 pinit 集成

安装: 26

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

公开问题: 1

类型:yii2-extension

dev-master 2014-03-06 12:02 UTC

This package is not auto-updated.

Last update: 2024-09-14 15:06:01 UTC


README

Pin It 按钮用于 Yii2

设置

请将您想要显示为覆盖层的图片添加到文件夹中

web/img/pinterest.png

应该是交织的,不要太大;)

CKEDITOR 示例

$pinterest = <<< SCRIPT
{instanceReady: function() {
  this.dataProcessor.htmlFilter.addRules({
      elements: {
          img: function( el ) {
              if ( !el.attributes.alt )
                  el.attributes.alt = 'pinterest-image';
              var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<div class="pinterest-image">'+el.getOuterHtml()+'</div>' );
              el.replaceWith(fragment);
          }
      }
  });          
}}
SCRIPT;