ما الجديد
مرحبا بك زائرنا الكريم في موقع شقاوي للتصميم والبرمجة اذا كانت هذه زيارتك اﻻولى فنتشرف بانضمامك لنا وان كنت احد كوكبة اعضائنا فأهلا بعودتك مرة أخرى

فكرة avatar circle

  • بادئ الموضوع بادئ الموضوع wikiba
  • تاريخ البدء تاريخ البدء

Peace be upon you. how to add a rotating user ( spinning ) avatar like on your pages and this banner Allah is Merciful.

wikiba

عضو جديد
إنضم
20 مارس 2025
المشاركات
13
مستوى التفاعل
4
النقاط
3
Peace be upon you.

how to add a rotating user ( spinning ) avatar like on your pages

and this banner

Allah is Merciful.
 

المرفقات

  • 567.png
    567.png
    10.4 KB · المشاهدات: 8
شرح التركيب: اسنخ الكود التالي الي قالب extra.less

Less:
.avatar{
    width: 96px;
    height: 96px;
    border-radius: 4px;
    padding: 2px;
    transition: border-radius 1s ease;
    border: 1px solid hsl(205,54%,77%);
    &:hover {
        border-radius: 50% !important;
        animation: rotate 1s ease;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }

}
 
Use ChatGPT

كود:
/* Signature Styling in XenForo */
.message-signature {
    border: 2px solid #4A90E2; /* Border color */
    background: #f8f9fa; /* Background color */
    padding: 15px; /* Inner spacing */
    margin-top: 15px; /* Space from top content */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    font-size: 14px; /* Font size */
    text-align: center; /* Center text alignment */
    font-style: italic; /* Italic text */
    transition: all 0.3s ease-in-out; /* Smooth transition effects */
}

/* Hover effect */
.message-signature:hover {
    background: #e3e7ed;
    border-color: #2E70D1;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


1743072450392.png
 
التعديل الأخير:
كود:
/* Signature Styling in XenForo */
.message-signature {
    border: 2px solid #4A90E2; /* Default border color */
    border-top-color: #808080; /* Gray top border */
    border-bottom-color: #808080; /* Gray bottom border */
    border-left-color: #FFA500; /* Orange left border */
    border-right-color: #FFA500; /* Orange right border */
    background: #f8f9fa; /* Background color */
    padding: 15px; /* Inner spacing */
    margin-top: 15px; /* Space from top content */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    font-size: 14px; /* Font size */
    text-align: center; /* Center text alignment */
    font-style: italic; /* Italic text */
    transition: all 0.3s ease-in-out; /* Smooth transition effects */
}

/* Hover effect */
.message-signature:hover {
    background: #e3e7ed;
    border-top-color: #696969; /* Darker gray on hover */
    border-bottom-color: #696969; /* Darker gray on hover */
    border-left-color: #FF8C00; /* Darker orange on hover */
    border-right-color: #FF8C00; /* Darker orange on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
1743072740671.png
 
كود:
.message-signature {
    border: 1px solid #4A90E2; /* Thinner border */
    border-top-color: #808080;
    border-bottom-color: #808080;
    border-left-color: #FFA500;
    border-right-color: #FFA500;
    background: #f8f9fa;
    padding: 10px; /* Reduced padding */
    margin-top: 10px; /* Less spacing */
    border-radius: 5px; /* Tighter corners */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Slightly softer shadow */
    font-size: 14px;
    text-align: center;
    font-style: italic;
    transition: all 0.3s ease-in-out;
}

/* Hover effect */
.message-signature:hover {
    background: #e3e7ed;
    border-top-color: #696969;
    border-bottom-color: #696969;
    border-left-color: #FF8C00;
    border-right-color: #FF8C00;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}


1743073237055.png
 
كود:
/* Signature Styling in XenForo */
.message-signature {
    border: 2px solid #4A90E2; /* Default border color */
    border-top-color: #808080; /* Gray top border */
    border-bottom-color: #808080; /* Gray bottom border */
    border-left-color: #FFA500; /* Orange left border */
    border-right-color: #FFA500; /* Orange right border */
    background: #f8f9fa; /* Background color */
    padding: 15px; /* Inner spacing */
    margin-top: 15px; /* Space from top content */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    font-size: 14px; /* Font size */
    text-align: center; /* Center text alignment */
    font-style: italic; /* Italic text */
    transition: all 0.3s ease-in-out; /* Smooth transition effects */
}

/* Hover effect */
.message-signature:hover {
    background: #e3e7ed;
    border-top-color: #696969; /* Darker gray on hover */
    border-bottom-color: #696969; /* Darker gray on hover */
    border-left-color: #FF8C00; /* Darker orange on hover */
    border-right-color: #FF8C00; /* Darker orange on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.message-signature {
    margin-top: 60px !important; /* زيادة المسافة بين المحتوى والتوقيع */
}


وهنا تنزيل التوقيع عن محتوي الموضوع

1743093481097.png
 
التعديل الأخير:
how to add this messages
 

المرفقات

  • Screenshot 2025-03-28 at 19-33-20 فكرة - avatar circle . SHQAWE FORUM.png
    Screenshot 2025-03-28 at 19-33-20 فكرة - avatar circle . SHQAWE FORUM.png
    62.4 KB · المشاهدات: 1
عودة
أعلى