الفرق بين المراجعتين لصفحة: «CSS/background-attachment»
لا ملخص تعديل |
ط استبدال النص - '\[\[تصنيف:(.*)\]\]' ب'{{SUBPAGENAME}}' |
||
سطر 103: | سطر 103: | ||
* مواصفة [http://www.w3.org/TR/CSS2/colors.html#propdef-background-attachment CSS Level 2 (Revision 1)]. | * مواصفة [http://www.w3.org/TR/CSS2/colors.html#propdef-background-attachment CSS Level 2 (Revision 1)]. | ||
* مواصفة [http://www.w3.org/TR/CSS1/#background-attachment CSS Level 1]. | * مواصفة [http://www.w3.org/TR/CSS1/#background-attachment CSS Level 1]. | ||
[[تصنيف:CSS]] | [[تصنيف:CSS|{{SUBPAGENAME}}]] | ||
[[تصنيف:CSS Property]] | [[تصنيف:CSS Property|{{SUBPAGENAME}}]] | ||
[[تصنيف:CSS Background]] | [[تصنيف:CSS Background|{{SUBPAGENAME}}]] |
مراجعة 15:40، 28 يناير 2018
الخاصية background-attachment
في CSS تُحدِّد إذا كان موضع الصورة (المُحدَّدة عبر الخاصية background-image
) ثابتًا (fixed) ضمن إطار العرض (viewport) أو كان سيُمرَّر عند التمرير في العنصر (أو الصفحة) الحاوي له.
/* كلمات مفتاحية */
background-attachment: scroll;
background-attachment: fixed;
background-attachment: local;
/* القيم العامة */
background-attachment: inherit;
background-attachment: initial;
background-attachment: unset;
القيمة الابتدائية | scroll
|
---|---|
تُطبَّق على | جميع العناصر. |
قابلة للوراثة | لا |
قابلة للتحريك | نعم |
القيمة المحسوبة | كالقيمة المُحدَّدة. |
أمثلة
مثال بسيط عن استخدام الخاصية background-attachment
لجعل موضع صورة الخلفية (المُحدَّدة عبر الخاصية background-image
) ثابتًا. شيفرة HTML:
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
شيفرة CSS:
p {
background-image: url("image.png");
background-attachment: fixed;
}
مثال عن استخدام أكثر من صورة للخلفية (background-image
)، مع تحديد قيمة مختلفة لكلٍ منها عبر الخاصية background-attachment
(ويُفصل بين تلك القيم بفاصلة)؛ لاحظ أنَّنا استخدامنا الخاصية background-repeat
لضبط كيفية تكرار صورة الخلفية.
شيفرة HTML:
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
At vero eos et accusamus et iusto odio dignissimos ducimus, qui blanditiis praesentium voluptatum deleniti atque corrupti, quos dolores et quas molestias excepturi sint, obcaecati cupiditate non provident, similique sunt in culpa, qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio, cumque nihil impedit, quo minus id, quod maxime placeat, facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet, ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat…
</p>
شيفرة CSS:
p {
background-image: url("image-1.png"), url("image-2.png");
background-attachment: fixed, scroll;
background-repeat: no-repeat, repeat-y;
}
دعم المتصفحات
الميزة | Chrome | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
الدعم الرئيسي | 1.0 | 1.0 | 4 | 3.5 | 1.0 |
خلفيات متعددة | 1.0 | 3.6 | 9.0 | 10.5 | 1.3 |
البنية العامة
قيمة الخاصية background-attachment
تكون إحدى الكلمات المفتاحية الآتية:
القيمة <attachment>
fixed
يكون موضع الخلفية ثابتًا (fixed) بالنسبة إلى إطار العرض، وإذا امتلك العنصر إمكانية التمرير (scroll)، فلن تتحرك الخلفية مع العنصر.
local
تكون صورة الخلفية ثابتةً نسبةً إلى محتوى العنصر، فلو امتلك العنصر إمكانية التمرير فستتحرك الخلفية مع محتوى العنصر.
scroll
تكون الخلفية ثابتةً نسبةً إلى العنصر نفسه ولا تتحرك مع محتوياته.
البنية الرسمية
background-attachment: <attachment>#;
يمكن تكرار القيم لتطبيقها على أكثر من صورة خلفية بفصلها بفاصلة ,
.
<attachment> = scroll | fixed | local
مصادر ومواصفات
- مواصفة CSS Backgrounds and Borders Module Level 3، سمحت هذه المواصفة للخاصية بدعم تعدد الخلفيات، وأضافت القيمة
local
. - مواصفة CSS Level 2 (Revision 1).
- مواصفة CSS Level 1.