How to use free tab bar icon images as bar button image?
I got some free image icons for iOS, for example, http://glyphish.com/
but I think these images is for tab bar icons, not for bar button images. I used these images to bar button, but it isn't good to look due to alphas in image. Pure-white image is needed for bar button image.
- Is there any good images for bar button?
- or, how can I edit image t开发者_如何学运维o use in bar button image? I'm not familiar to graphics tools like photoshop.
- or, can I use images by changing bar button properties? I think if images can be inverted, it'll be better.
Assuming you are developing an HTML/CSS/Javascript app - have you looked at Jquery Mobile?
You can use their standard bar icons, which are white with alpha background - see the JQM-docs on button icons here.
So regarding your questions:
1) Yes, you can for example stick with the custom icons provided by frameworks
2) You can always draw your own icons in Photoshop or (I prefer) Inkscape (free & easier). I did this in Inkscape for example. Works nicely in Jquery Mobile.
3) Inverting images - if you are talking about using an image as a "mask" - you can only do this on Webkit browsers using the -webkit-mask-image
property without changing the icon (example: here. If you need this across different devices, you have to cut out icons from a background-image. I did this in my cross-browser tab-bar
精彩评论