微信小程序最新基础库Bug
发布于 5 年前 作者 ycai 9152 次浏览 来自 问答
  • 当前 Bug 的表现(可附上截图)

正式版小程序

  • 预期表现
  • 复现路径

开发版  体验版都没有这个情况  正式版就会这样

  • 提供一个最简复现 Demo

/*左滑  */

.del {

background-color: orangered;

width: 200rpx;

display: flex;

flex-direction: column;

align-items: center;

justify-content: center;

color: #fff;

font-size: 40rpx;

color: #fff;

-webkit-transform: translateX(200rpx);

transform: translateX(200rpx);

-webkit-transition: all 0.4s;

transition: all 0.4s;

}

.touch-move-active .chat-check, .touch-move-active .del {

-webkit-transform: translateX(0);

transform: translateX(0);

}

.touch-item {

display: flex;

justify-content: space-between;

overflow: hidden;

}

回到顶部