Jump to content

round loading circle file?

Featured Replies

Posted

If the page is loading content there is an animated round rotating circle. Where can I find this file? Thanks.

It's an icon from the icomoon icon pack

https://icomoon.io

IPS implement it using:

.ipsLoading:before {
    font-family: 'icomoon';
    content: '\e97b';
}

and to make it spin:

.ipsLoading:not( .ipsLoading_noAnim ):before {
    -webkit-animation: spinner 0.75s infinite linear;
    animation: spinner 0.75s infinite linear;
}

 

  • Author
2 minutes ago, Tom S. said:

It's an icon from the icomoon icon pack

https://icomoon.io

IPS implement it using:


.ipsLoading:before {
    font-family: 'icomoon';
    content: '\e97b';
}

and to make it spin:


.ipsLoading:not( .ipsLoading_noAnim ):before {
    -webkit-animation: spinner 0.75s infinite linear;
    animation: spinner 0.75s infinite linear;
}

 

Thanks a lot Tom.

Archived

This topic is now archived and is closed to further replies.

Recently Browsing 0

  • No registered users viewing this page.