HTML ဂရပ်ဖစ်

ဂရပ်ဖစ် ပင်မစာမျက်နှာ

Google Maps

Maps မိတ်ဆက် Maps အခြေခံ Maps Overlays Maps ပွဲများ Maps ထိန်းချုပ်မှုများ Maps အမျိုးအစားများ Maps အကိုးအကား

SVG ကျူတိုရီရယ်

SVG နိဒါန်း HTML တွင် SVG SVG စတုဂံ SVG စက်ဝိုင်း SVG Ellipse SVG လိုင်း SVG Polygon SVG Polyline SVG လမ်းကြောင်း SVG စာသား SVG Stroking SVG Filters နိဒါန်း SVG မှုန်ဝါးခြင်းအကျိုးသက်ရောက်မှုများ SVG Drop Shadows SVG Linear SVG Radial SVG ဥပမာများ SVG အကိုးအကား

Canvas ကျူတိုရီရယ်

Canvas မိတ်ဆက် ကင်းဗတ်ဆွဲခြင်း။ Canvas Coordinates ကင်းဗတ် Gradients ကင်းဗတ်စာသား ကင်းဗတ်ပုံများ ကင်းဗတ်ရည်ညွှန်း

ကင်းဗတ်နာရီ

နာရီ မိတ်ဆက် နာရီမျက်နှာ နာရီနံပါတ်များ နာရီလက်များ နာရီစတင်

HTML ဂိမ်း

ဂိမ်းမိတ်ဆက် ဂိမ်း Canvas ဂိမ်းအစိတ်အပိုင်းများ ဂိမ်းထိန်းချုပ်သူများ ဂိမ်းအတားအဆီးများ ဂိမ်းရမှတ် ဂိမ်းပုံများ ဂိမ်းအသံ ဂိမ်းဆွဲငင်အား ဂိမ်းခုန်ခြင်း။ ဂိမ်းလှည့်ခြင်း။ ဂိမ်းလှုပ်ရှားမှု

SVG Stroke ဂုဏ်သတ္တိများ


SVG Stroke ဂုဏ်သတ္တိများ

SVG သည် လေဖြတ်ခြင်းဆိုင်ရာ ဂုဏ်သတ္တိများစွာကို ပေးဆောင်သည်။ ဤအခန်းတွင် အောက်ပါတို့ကို လေ့လာပါမည်။

  • လေဖြတ်ခြင်း။
  • လေဖြတ်-အကျယ်
  • လေဖြတ်-လိုင်းထုပ်
  • လေဖြတ်-dasharray

လေဖြတ်ခြင်းဆိုင်ရာ ဂုဏ်သတ္တိအားလုံးကို စက်ဝိုင်းကဲ့သို့ မျဉ်းကြောင်းများ၊ စာသားနှင့် အကွက်များကို အသုံးချနိုင်သည်။


SVG stroke Property

လေဖြတ်ခြင်းဆိုင်ရာ ပိုင်ဆိုင်မှုသည် ဒြပ်စင်တစ်ခု၏ မျဉ်းတစ်ကြောင်း၊ စာသား သို့မဟုတ် ကောက်ကြောင်း၏ အရောင်ကို သတ်မှတ်သည်-

Sorry, your browser does not support inline SVG.

ဤသည်မှာ SVG ကုဒ်ဖြစ်သည်

ဥပမာ

<svg height="80" width="300">
  <g fill="none">
    <path stroke="red" d="M5 20 l215 0" />
    <path stroke="black" d="M5 40 l215 0" />
    <path stroke="blue" d="M5 60 l215 0" />
  </g>
</svg>

SVG လေဖြတ်-အကျယ် ပိုင်ဆိုင်မှု

လေဖြတ်-အကျယ် ပိုင်ဆိုင်မှုသည် ဒြပ်စင်တစ်ခု၏ အထူ၊ စာကြောင်း သို့မဟုတ် အကြမ်းထည်ကို သတ်မှတ်သည်-

Sorry, your browser does not support inline SVG.

ဤသည်မှာ SVG ကုဒ်ဖြစ်သည်

ဥပမာ

<svg height="80" width="300">
  <g fill="none" stroke="black">
    <path stroke-width="2" d="M5 20 l215 0" />
    <path stroke-width="4" d="M5 40 l215 0" />
    <path stroke-width="6" d="M5 60 l215 0" />
  </g>
</svg>


SVG stroke-linecap အိမ်ခြံမြေ

stroke-linecap ပိုင်ဆိုင်မှုသည် အဖွင့်လမ်းကြောင်းသို့ အဆုံးသတ်အမျိုးမျိုးကို သတ်မှတ်သည်-

Sorry, your browser does not support inline SVG.

ဤသည်မှာ SVG ကုဒ်ဖြစ်သည်

ဥပမာ

<svg height="80" width="300">
  <g fill="none" stroke="black" stroke-width="6">
    <path stroke-linecap="butt" d="M5 20 l215 0" />
    <path stroke-linecap="round" d="M5 40 l215 0" />
    <path stroke-linecap="square" d="M5 60 l215 0" />
  </g>
</svg>

SVG stroke-dasharray အိမ်ခြံမြေ

stroke-dasharray ပိုင်ဆိုင်မှုကို dashed လိုင်းများဖန်တီးရန်အသုံးပြုသည်-

Sorry, your browser does not support inline SVG.

ဤသည်မှာ SVG ကုဒ်ဖြစ်သည်

ဥပမာ

<svg height="80" width="300">
  <g fill="none" stroke="black" stroke-width="4">
    <path stroke-dasharray="5,5" d="M5 20 l215 0" />
    <path stroke-dasharray="10,10" d="M5 40 l215 0" />
    <path stroke-dasharray="20,10,5,5,5,10" d="M5 60 l215 0" />
  </g>
</svg>