为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 HTML 中的头像图像上添加点标记?

如何在 HTML 中的头像图像上添加点标记?

开满天机 2024-01-03 13:54:35
我想在头像图片的右下角添加一个蓝色点标记,结果应该如下所示。<avatar>     <img [src]="item.profilepic"/>     </avatar>可以在 HTML 中做到这一点吗?
查看完整描述

1 回答

?
汪汪一只猫

TA贡献1898条经验 获得超8个赞

是的,这是可能的。你可以这样做:


.avatar {

    height: 256px;

    width: 256px;

    position: absolute;

}

.dot {

    height: 25px;

    width: 25px;

    border-radius: 100%;

    background: blue;

    position: absolute;

    right: 25px;

    bottom: 25px;

}

<div class="avatar">

    <img src="http://aux2.iconspalace.com/uploads/smile-icon-256.png">

    <div class="dot"></div>

</div>

使用 Ionic 标签,它看起来像这样:


超文本标记语言


<ion-avatar>

    <img src="http://aux2.iconspalace.com/uploads/smile-icon-256.png"/>

    <div class="dot"></div>

</ion-avatar>

CSS


ion-avatar {

  height: 256px;

  width: 256px;

  position: absolute;

}

.dot {

  height: 25px;

  width: 25px;

  border-radius: 100%;

  background: blue;

  position: absolute;

  right: 25px;

  bottom: 25px;

}

https://img1.sycdn.imooc.com/6594f6ee0001ea1102580259.jpg

查看完整回答
反对 回复 2024-01-03
  • 1 回答
  • 0 关注
  • 127 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信