div {
position: relative;
width: 200px;
height: 200px;
background: #000;
overflow: hidden;
border-radius: 50%;
animation: ROTATION 5s linear infinite;
}
div:before {
position: absolute;
display: block;
content: "";
top: 0; left: 0;
width: 50%; height: 100%;
background: #999;
}
div:after {
position: absolute;
display: block;
content: "";
top: 0; right: 0;
width: 50%; height: 100%;
background: #f00;
}
@keyframes ROTATION {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
$(document).ready(function() {
$("#billing_phone").mask("(999) 99-99-999");
$("#billing_phone").on("blur", function() {
var last = $(this).val().substr( $(this).val().indexOf("-") + 1 );
if( last.length == 3 ) {
var move = $(this).val().substr( $(this).val().indexOf("-") - 1, 1 );
var lastfour = move + last;
var first = $(this).val().substr( 0, 9 );
$(this).val( first + '-' + lastfour );
}
});
}
Препод говорит, что 10 не в диапазоне памяти.Можно указать число в квадратных скобках от 0 до 9.
int* x = malloc(10 * sizeof(int));