文档

打开客服会话

按钮关键属性

open-type="contact"

功能按钮

<button class="mo-open-type"
        open-type="contact">
</button>

分享

<button class="mo-open-type" open-type="share"></button>

css样式

元素需要设置相对定位使用障眼法,将按钮元素隐藏,避免影响当前布局样式

.mo-open-type {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.mo-open-type::after {
    border: none;
}

或者

.mo-open-type {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注