System

JQuery ( Styling And Events Handling)

မင်္ဂလာပါ။
ကျွန်တော်ကတော့ Spiceworks Myanmar တွင် အလုပ်လုပ်ကိုင်လျက်ရှိသော ဌေးမင်းခေါင် ဖြစ်ပါတယ်။ ယနေ့ ကျွန်တော်ကတေ့ JQuery Library ကို အသုံးပြုပြီး DOM များကို Styling လုပ်ခြင်း၊ Event များ ထည့်သွင်းခြင်း များနှင့် ပတ်သက်၍ ပြောပြချင်ပါတယ်။

အရင်ဦးဆုံး index.html ဖိုင်လေး အရင် တည်ဆောက်ပါမယ်။
ပြီးရင် html ကုဒ်များ ထည့်ပါမယ်။

01.<title>JQuery ( Styling & Events )</title>
02.<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
03. 
04. 
05.<div id="css_styling"></div>
06.<div class="actions">
07.    <button class="action add">Add</button>
08.    <button class="action remove">Remove</button>
09.    <button class="action remove_all">Remove All</button>
10.</div>

JQuery ကို အသုံးပြုဖို့အတွက် CDN ချိတ်ပါမယ်။
CDN ကို ချိတ်သုံးဖို့အတွက် ဒီ link ကို https://code.jquery.com/ ဝင်ပြီး minified ကို နှိပ်လိုက်ပါ။ Pop Up Box ပေါ်လာရင် Copy Icon ကို နှိပ်၍ Copy ကူးပါ။

ပြီးရင် Tag အောက်တွင် Paste လုပ်ပေးပါ။

1.<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>

အခုဆို JQuery ချိတ်လို့ ပြီးသွားပါပြီ။

div နှစ်ခုနဲ့ button သုံးခု ထည့်ပါမယ်။

1.<div id="css_styling"></div>
2.<div class="actions">
3.    <button class="action add">Add</button>
4.    <button class="action remove">Remove</button>
5.    <button class="action remove_all">Remove All</button>
6.</div>

CSS Style ထည့်ပါမယ်။ Style အဖွင့် အပိတ်ဖြင့် ရေးပြီး အောက်က ကုဒ်ကို ထည့်ပါမယ်။

01.#css_styling{
02.    border: 1px solid black;
03.    width: 250px;
04.    height: 250px;
05.}
06. 
07..actions{
08.    margin-top: 10px;
09.}

အခုဆိုရင် div button များ နေရာချပြီးပါပြီ။ Button များအတွက် Click Event အရင် ထည့်ပါမယ်။

နံပါတ် ၁ ( Single Styling )
Styling တစ်ခုချင်းစီ ထည့်ပါမယ်။

1.$('.action.add').click(function(){
2. 
3.    // Apply CSS Styling with Single Styling
4.    $('#css_styling').css("borderColor", "red"); // Method 1
5.    $('#css_styling').css("border-color", "red"); // Method 2
6. 
7.});

CSS Styling ကို inline ပုံစံ JQuery ဖြင့် ထည့်ခြင်း ဖြစ်ပါတယ်။ Method 1 နဲ့ Method 2 မိမိကြိုက်တဲ့ ပုံစံဖြင့် ရေးလို့ ရပါတယ်။
အခုဆို Add ခလုတ်ကို နှိပ်မယ်ဆိုရင် div မှာ border အရောင် အနီဖြစ်သွားမှာ ဖြစ်ပါတယ်။

နံပါတ် ၂ ( Multiple Styling )
Styling ကို တစ်ခုထပ်မက ထည့်ချင်တယ်။ ကုဒ်ကိုလည်း တစ်လိုင်းတည်း ရေးချင်တယ်ဆိုရင် အောက်ပါ အတိုင်း ထည့်ပါမယ်။

1.$('#css_styling').css({
2.    "border-color": "red",
3.    "background-color": "red"
4.});

Styling ထည့်လို့ရသလို Animation နဲ့လည်း တွဲထည့်လို့ ရပါတယ်။

1.$('#css_styling').animate({
2.    "width": "125px",
3.    "height": "125px",
4.}, 500);

အခုဆိုရင် ကုဒ်က အောက်ပါအတိုင်း ထွက်လာပါမယ်။

01.$('.action.add').click(function(){
02. 
03.    $('#css_styling').css({
04.        "border-color": "red",
05.        "background-color": "red"
06.    });
07. 
08.    $('#css_styling').animate({
09.        "width": "125px",
10.        "height": "125px",
11.    }, 500);
12. 
13.});

အ‌ပေါ်ကုဒ်ကို Run မယ်ဆိုရင် border မှာ အနီရောင်ဖြစ်မှာ ဖြစ်ပြီး div size လည်း animation နှင့်အတူ ကြီးလာမှာ ဖြစ်ပါတယ်။

အခုတစ်ခါမှာတော့ remove button မှာ click event ကို ထည့်ပါမယ်။ Background Color အ‌ရောင်ကို ဖြုတ်ဖို့အတွက် blank ထားလိုက်ရင် ပျောက်သွားပါမယ်။

1.$('.action.remove').click(function(){
2.    $('#css_styling').css('background-color', '');
3.});

Remove All button အတွက်ကတော့ ခုနက ထည့်သမျှ ပြန်ဖြုတ်ချင်တဲ့အတွက် style တစ်ခုလုံးကို ဖြုတ်လိုက်ပါမယ်။

1.$('.action.remove_all').click(function(){
2.    $('#css_styling').removeAttr('style');
3.});

အခုလို ဖတ်ရှုပေးတဲ့ အတွက် ကျေးဇူးတင်ပါတယ်။ သာယာသော နေ့ရက်လေး ဖြစ်ပါစေ။

Leave a Reply

Your email address will not be published. Required fields are marked *