Reputation: 486
How can I create this md-switch with icon?
I took example from www.inbox.google.com
Thanks
Upvotes: 0
Views: 523
Reputation: 1402
You can add a background-image
to the .md-thumb
class
.md-thumb{
background: url('imageUrl');
background-size: cover;
}
Edit:
Show icon on ON:
.md-checked .md-thumb{
background: url('imageUrl');
background-size: cover;
}
Show icon on OFF:
.md-checked .md-thumb{
background: none;
}
.md-thumb{
background: url('imageUrl');
background-size: cover;
}
Upvotes: 4