简体   繁体   中英

Onclick popup of sharethis window

As I have embed the sharethis plugin through the below script and it popup the share window on mouse hover event. But I required to popup only on Onclick event.

<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">
stLight.options({
    publisher:"c7a25472-030e-48ce-b630-a71f99cc53d9"
});
</script>
<span class="st_sharethis_custom" displayText="Share">Share</span>

So could you please advice how can I achieve this.

Setting the onhover property to false should work for you:

stLight.options({
    publisher:"c7a25472-030e-48ce-b630-a71f99cc53d9",
    onhover: false
});

var addthis_config = {ui_click:true} ui_click如果为true,则仅在单击时显示紧凑菜单。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM