philippfrenzel / yii2pinit
Yii2 pinit 集成
dev-master
2014-03-06 12:02 UTC
Requires
- yiisoft/yii2: *
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;