本帖最后由 各得其所好 于 2022-5-29 00:11 编辑
日前参加了低代码赋能B2C应用实践 的公开课 https://gcdn.grapecity.com.cn/forum.php?mod=viewthread&tid=147395&fromuid=68453 。对主讲人程福全经理的数字角标的实现方法很感兴趣。 它采用了JavaScript + CSS 方式进行实现。通过测试觉得比移动单元格位置的方法更方便、灵活,在此和大家共同学习。
实现效果如下动画:实现方式:在活字格设计器8.0中实现
相关文件: 1、JavaStrip 代码如下: - $(".message").append(`<div class="hint">${Forguncy.Page.getCell("cell").getValue()}</div>`);
复制代码
2、CCS 代码:
- .hint {
- font-size: 13px;font-weight: bolder;text-align: center;line-height: 18px; position: absolute; z-index: 99;
- top: -5px; left: 80%;width: 18px;height: 18px;color: #fff;border-radius: 50%;background-color: #ff3324; }
- .hint1 {
- font-size: 13px;font-weight: bolder;text-align: center;line-height: 18px; position: absolute; z-index: 99;
- top: -5px; right: 80%;width: 18px;height: 18px;color: #fff;border-radius: 50%;background-color: #ff3324; }
复制代码
工程文件
|