<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[אנגולר - SCSS]]></title><description><![CDATA[<p dir="auto">צהרים טובים<br />
אני צריכה להציג את כל אותיות הא"ב בשורה בתחתית העמוד ואז אות אחרי אות צריכות לזוז כל אחת למקום שמוגדר לה ואח"כ כל אות נשלחת לסרבר לבדיקה כלשהי<br />
האם הדרך הנכונה היא להגדיר לכל אות משתנה?<br />
(22 משתנים<img src="https://tchumim.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f62e.png?v=9d71ebe86e6" class="not-responsive emoji emoji-android emoji--open_mouth" style="height:23px;width:auto;vertical-align:middle" title=":open_mouth:" alt="😮" /> ..)</p>
]]></description><link>https://tchumim.com/topic/13767/אנגולר-scss</link><generator>RSS for Node</generator><lastBuildDate>Thu, 21 May 2026 13:44:05 GMT</lastBuildDate><atom:link href="https://tchumim.com/topic/13767.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 31 Jul 2022 11:18:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to אנגולר - SCSS on Thu, 04 Aug 2022 15:27:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%9E">@<bdi>ממ</bdi></a> תביאו דוגמא איך הייתם מעצבים אות אחת רק דרך ה CSS בלי התערבות של ה TS</p>
]]></description><link>https://tchumim.com/post/143768</link><guid isPermaLink="true">https://tchumim.com/post/143768</guid><dc:creator><![CDATA[יוסף בן שמעון]]></dc:creator><pubDate>Thu, 04 Aug 2022 15:27:56 GMT</pubDate></item><item><title><![CDATA[Reply to אנגולר - SCSS on Thu, 04 Aug 2022 07:18:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%99%D7%95%D7%A1%D7%A3-%D7%91%D7%9F-%D7%A9%D7%9E%D7%A2%D7%95%D7%9F">@<bdi>יוסף-בן-שמעון</bdi></a> - תודה!<br />
לא כל כך הבנתי את המיקום איך הוא מתבטא ב-HTML?<br />
נתת שם ביטוי רק ל-COLOR</p>
]]></description><link>https://tchumim.com/post/143739</link><guid isPermaLink="true">https://tchumim.com/post/143739</guid><dc:creator><![CDATA[ממ]]></dc:creator><pubDate>Thu, 04 Aug 2022 07:18:44 GMT</pubDate></item><item><title><![CDATA[Reply to אנגולר - SCSS on Mon, 01 Aug 2022 15:50:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%9E">@<bdi>ממ</bdi></a> אם זה מאפיין ייחודי לכל אות, אפשר להכניס את זה למבנה הנתונים, כך:</p>
<pre><code>chars = [
    {
        char: 'א',
        position: 'left',
        color: 'red'
    },
    {
        char: 'ב',
        position: 'right',
        color: 'blue'
    },
]
</code></pre>
<p dir="auto">וכך אפשר להחיל את הסטייל מההטמל</p>
<pre><code>&lt;div *ngFor="let char of chars" [style.color]="char.color"&gt;{{char.char}}&lt;/div&gt;

</code></pre>
]]></description><link>https://tchumim.com/post/143569</link><guid isPermaLink="true">https://tchumim.com/post/143569</guid><dc:creator><![CDATA[יוסף בן שמעון]]></dc:creator><pubDate>Mon, 01 Aug 2022 15:50:44 GMT</pubDate></item><item><title><![CDATA[Reply to אנגולר - SCSS on Mon, 01 Aug 2022 07:44:08 GMT]]></title><description><![CDATA[<p dir="auto">אוקי,<br />
נגיד אני יוצרת את זה בתוך מבנה נתונים כזה:</p>
<pre><code>chars = { alef = 'א',
bet = 'ב',
....}
</code></pre>
<p dir="auto">ב html אני מגיעה לערך כך:</p>
<pre><code>chars.alef
</code></pre>
<p dir="auto">עכשיו אני רוצה לעצב את המיקום שלו וכו ב CSS איך אני נגשת אליו משם?<br />
לכל אות יש מיקום שונה ועיצוב שונה<br />
תודה!!!</p>
]]></description><link>https://tchumim.com/post/143534</link><guid isPermaLink="true">https://tchumim.com/post/143534</guid><dc:creator><![CDATA[ממ]]></dc:creator><pubDate>Mon, 01 Aug 2022 07:44:08 GMT</pubDate></item><item><title><![CDATA[Reply to אנגולר - SCSS on Sun, 31 Jul 2022 14:39:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%9E">@<bdi>ממ</bdi></a> אני הייתי יוצר את המערך כך</p>
<pre><code>const chars = 'אבגדהוזחטיכלמנסעפצקרשתםןץףךןףץ';
@Component({
    selector: 'app-c',
    templateUrl: './c.component.html',
    styleUrls: ['./c.component.scss']
})
export class CComponent implements OnInit, OnDestroy {
    chars = chars.split('');
    ngOnInit(){
        this.chars.forEach(char =&gt; {
            this.doSomthing(char);
        })
    }
}</code></pre>
]]></description><link>https://tchumim.com/post/143507</link><guid isPermaLink="true">https://tchumim.com/post/143507</guid><dc:creator><![CDATA[יוסף בן שמעון]]></dc:creator><pubDate>Sun, 31 Jul 2022 14:39:49 GMT</pubDate></item><item><title><![CDATA[Reply to אנגולר - SCSS on Sun, 31 Jul 2022 13:16:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%D7%9E%D7%9E">@<bdi>ממ</bdi></a> אמר ב<a href="/post/143500">אנגולר - SCSS</a>:</p>
<blockquote>
<p dir="auto">האם הדרך הנכונה היא להגדיר לכל אות משתנה?</p>
</blockquote>
<p dir="auto">לא. יוצרים מבנה נתונים, כמו מערך או אובייקט ומציבים בו את כל האותיות עם הבדיקות המתאימות פר אות. כיון שזה typescript קשה לי לכתוב לך דוגמה, אבל תחשבי למשל על קלאס שמייצג אות בודדת, ולולאה שיוצרת את כל הקלאסים, ממעבר (לולאה או map) על משתנה פשוט שמכיל את כל האותיות.</p>
]]></description><link>https://tchumim.com/post/143504</link><guid isPermaLink="true">https://tchumim.com/post/143504</guid><dc:creator><![CDATA[dovid]]></dc:creator><pubDate>Sun, 31 Jul 2022 13:16:58 GMT</pubDate></item></channel></rss>