تعریف
از متغیرها میتوان برای ذخیره کردن مسیر URL ها استفاده کرد.
مثال
مثال زیر الحاق URL در فایل LESS را نشان میدهد:
<html> <head> <link rel="stylesheet" href="/style.css" type="text/css" /> <title>LESS URLs</title> </head> <body> <div class="myclass"> </div> </body> </html>
سپس فایل style.less را ایجاد کنید.
@images: "http://kntit.ir"; .myclass { background : url("@{images}/images/kntit/Less/birds.jpg"); width:800px; height:500px; }
با استفاده از دستور زیر فایل style.less را به style.css تبدیل کنید:
lessc style.less style.css
با اجرای دستور بالا فایل style.css بصورت خود به خود ایجاد میشود و شامل کدهای زیر است:
.myclass { background: url("http://kntit.ir/images/kntit/Less/birds.jpg"); width: 800px; height: 500px; }
خروجی
بیایید دستورات زیر را انجام دهیم تا خروجی را ببینیم:
- کدهای html بالا را در فایل less_variables_interpolation_url.html ذخیره کنید.
- فایل HTML را در مرورگر باز کنید، خروجی بدین شکل خواهد بود.