After some discussion on IRC we decided to change up the hot icons a little
I also modified the animation slightly to match the icon border color
http://12911.midaym.com/viewforum.php?f ... 5f0d3d1cea
Update method for using Icons
Re: Update method for using Icons
Is that problem exclusive to Apple devices? Because on Android tablets and smartphones the animations work and look fine to me.hanakin wrote: The problem is they are animated gifs which are rigid and load slow, they need to be updated for an improved quality as they are blurry as hell. They need to allow for retina which is complicated.
I really hope that we can put them all in one sprite, but imo they have to look good for general use of phpBB e.g. for little chit-chat websites as well as for professional bodies such as universities.hanakin wrote: They can not be put into the spite making one if not two additional server requests.
This should be interesting and I personally like it a lot as an idea. I still prefer the old animations (can you make the pulse slightly more subtle and even less distractive? Maybe use smaller range?), but yours are fine. I think the pulse is a keeper, good idea.hanakin wrote: The current animation is a place holder anyway like I stated I just needed to get something in place. I have tweaked it to make it more subtle as suggested so it nows has a subtle yellow pulse animation
Re: Update method for using Icons
Why not convert these images to SVG? There is support for animation, and thus may play an old view animated images.
There is no support in IE8 and older androids, but support css animations worse.
There is no support in IE8 and older androids, but support css animations worse.
Sorry for my English.
Re: Update method for using Icons
@sumanai. I have pushed for some svg changes in other fixes and got shot down so went with the safer option. I believe the main reason being user base and comfortability with svgs as they are still relatively a new concept as far as using them. Not to mention they are somewhat complicated
Re: Update method for using Icons
hanakin wrote:I believe the main reason being user base and comfortability with svgs as they are still relatively a new concept as far as using them.
But it's an idea for future versions.Wikipedia wrote:SVG:
Initial release 4 September 2001
Sorry for my English.
Re: Update method for using Icons
possibly their are upsides and downsides. Main downside being that their are overly complex
Re: Update method for using Icons
Looking good.hanakin wrote:After some discussion on IRC we decided to change up the hot icons a little
I also modified the animation slightly to match the icon border color
http://12911.midaym.com/viewforum.php?f ... 5f0d3d1cea
- Darkness_demoN
- Registered User
- Posts: 89
- Joined: Mon Jul 29, 2013 1:48 pm
- Contact:
Re: Update method for using Icons
I think that too Amm how can i change that pulse color? do i will have that option in css or somwhere else ?Mess wrote:Looking good.hanakin wrote:After some discussion on IRC we decided to change up the hot icons a little
I also modified the animation slightly to match the icon border color
http://12911.midaym.com/viewforum.php?f ... 5f0d3d1cea
Re: Update method for using Icons
yes its all css in the imageset.css file you will have to change it in several lines
The unread red color
The read blue color
The unread red color
Code: Select all
@-webkit-keyframes cd-pulse-unread {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, .8);
box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, .8);
}
50% {
-webkit-box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, .4);
box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, .4);
}
100% {
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
-webkit-box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, 0);
box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, 0);
}
}
@keyframes cd-pulse-unread {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, .8);
box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, .8);
}
50% {
-webkit-box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, .4);
box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, .4);
}
100% {
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
-webkit-box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, 0);
box-shadow: inset 0 0 1px 1px rgba(188, 42, 77, 0);
}
}
Code: Select all
@-webkit-keyframes cd-pulse-read {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, .8);
box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, .8);
}
50% {
-webkit-box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, .4);
box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, .4);
}
100% {
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
-webkit-box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, 0);
box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, 0);
}
}
@keyframes cd-pulse-read {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, .8);
box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, .8);
}
50% {
-webkit-box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, .4);
box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, .4);
}
100% {
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
-webkit-box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, 0);
box-shadow: inset 0 0 1px 1px rgba(25, 109, 181, 0);
}
}
- Darkness_demoN
- Registered User
- Posts: 89
- Joined: Mon Jul 29, 2013 1:48 pm
- Contact:
Re: Update method for using Icons
Thanx for info and fast respond