我成功使用zclip copy到剪贴板功能,直到我开始使用twitter bootstrap css框架。 现在我似乎不再使用zclip了,有人有解决方案吗?
一些测试结果:
以下是我如何使用zclip:
$('.test').zclip({
path:"{{ asset('bundles/yopyourownpoet/flash/ZeroClipboard.swf') }}",
copy: 'test',
afterCopy:function(){
alert('The poem has been copied to the clipboard.');
},
});
这适用于以下html:
<div class='test'>test</div>
但是每当我尝试使用图像时,它都不再起作用,闪光灯不会出现:
<div class='test'><img src="{{ asset('bundles/yopyourownpoet/images/Star.png') }}" alt="Star" height="100" width="100" /></div>
在我开始使用bootstrap之前,这工作得很好...... 任何使用zclip&amp; amp;的提示引导,并在图像上有闪光的东西? 非常感谢。
答案 0 :(得分:2)
好吧,经过多次尝试,我终于有了工作。我不得不恢复到zeroclipboard而不再使用zclip。 以下是正在运行的代码:
<div id="d_clip_container" style="position:relative; bottom: 25px; display: inline;">
<img id='d_clip_button' style="position:relative; top: 25px;" src="{{ asset('bundles/yopyourownpoet/images/CopyPoemPage8.png') }}" alt="Copy Poem" height="71" width="300" />
</div>
-
ZeroClipboard.setMoviePath("{{ asset('bundles/yopyourownpoet/flash/ZeroClipboard.swf') }}");
var clip = new ZeroClipboard.Client();
clip.setText( 'text to copy' );
clip.glue( 'd_clip_button', 'd_clip_container' );
clip.setHandCursor( true );
请注意,我必须使用一个技巧,底部25px放在容器上,顶部25px放在图像上,这样闪光灯就会与图像重叠。
这是有效的,除了在悬停图像时光标并不总是更改为指针。
我认为这个解决方案有点阴暗,所以如果有人有更好的解决方案,请分享。