SVG ປະມານຕາກະພິມ
SVG ປະມານຕາກະພິມ
SVG ສະໜອງຂໍ້ມູນການຄັດເລືອກຂອງການຫົວຫຼັງທົ່ວໄປ.ໃນປະຈຸບັນນີ້ພວກເຮົາຈະເຈລະຈາວ່າ:
stroke
stroke-width
stroke-linecap
stroke-dasharray
ທຸກການຄັດເລືອກປະສົມຄັນທັງໝົດສາມາດນຳໃຊ້ໃຫ້ກັບແຕ່ຮູບແບບວົງໂຄມິກຂອງທຸກນິວເຄຣຍທີ່ມີຮູບແບບຫົວຫຼັງ(ເຊັ່ນ:ວົງກວ້າງ).
SVG stroke ປະສົງການ
stroke
ປະສົງການສ້າງສີສາຍ, ຂໍ້ຄວາມ ຫຼື ສັນຕະວັດ:
ນີ້ແມ່ນ 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 stroke-width ປະສົງການ
stroke-width
ປະສົງການສ້າງຄວາມໜາກຂອງສາຍ, ຂໍ້ຄວາມ ຫຼື ສັນຕະວັດ:
ນີ້ແມ່ນ 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
ປະສົງການສ້າງບານປະສົງຂອງສາຍລາຍຫົວ:
ນີ້ແມ່ນ 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
ປະສົງການສ້າງສາຍລາຍວາງ:
ນີ້ແມ່ນ 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>