百度分享中的坑,自定义分享按钮,鼠标划上时不显示分享条

1.自定义分享按钮

注:将bdsharebuttonbox的透明度调为零


分享
.myShare{ position: relative; width:80px; heigth:40px; } .myShare .bdsharebuttonbox { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0); }

2.鼠标划上时不显示分享条

注:将分享pop框强制不显示,不影响点击时的显示效果

.bdshare_popup_box{
    display: none!important;
}

你可能感兴趣的:(百度分享中的坑,自定义分享按钮,鼠标划上时不显示分享条)