gpt4 book ai didi

angular - 如何将图像放入 Angular2 Material fab 按钮中?

转载 作者:太空狗 更新时间:2023-10-29 18:04:46 26 4
gpt4 key购买 nike

我想在 Angular2 Material 中的 fab 按钮内放置一个图像。如果您在 Google 或 Gmail 中登录,该外观就是该外观。

Angular2 Material 文档对此还没有任何内容。

例如,请看这张图片:http://www.mattpaulson.com/wp-content/uploads/2014/03/gmail-zero.png

我一直在玩的代码(不起作用)是:

    <button md-fab 
type="button">
<img md-fab-image [src]="userInfo.photoUrl">
<div class="md-ripple-container"></div>
</button>

<button md-fab
type="button">
<img md-fab-image [src]="userInfo.photoUrl">
</button>

<button md-fab md-fab-image
type="button">
<img md-fab-image [src]="userInfo.photoUrl">
</button>

<button md-icon-button
type="button">
<img [src]="userInfo.photoUrl">
</button>

<button md-icon-button
md-fab-image
type="button">
<img [src]="userInfo.photoUrl">
</button>

<button md-icon-button md-fab-image
type="button">
<img md-fab-image [src]="userInfo.photoUrl">
</button>

<button md-icon-button md-fab-image
type="button">
<img md-fab-image [src]="userInfo.photoUrl">
</button>

非理想黑客

    <button md-fab md-button
style="overflow:hidden;top:1rem;"
type="button">
<img [src]="userInfo.photoUrl" style="max-width:100%">
</button>

最佳答案

您可以使用带有一些额外样式的 button md-fab

<button md-fab class="image" 
[style.backgroundImage]="'url(' + YOUR_IMAGE_URL + ')'">
</button>

并添加:

button {
&.image {
background-color: transparent;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
}

关于angular - 如何将图像放入 Angular2 Material fab 按钮中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42730064/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com