| EUR | CNY |
|---|---|
| 1 EUR | 8.108232257 CNY |
| 5 EUR | 40.541161285 CNY |
| 10 EUR | 81.08232257 CNY |
| 25 EUR | 202.705806425 CNY |
| 50 EUR | 405.41161285 CNY |
| 100 EUR | 810.8232257 CNY |
| 500 EUR | 4054.1161285 CNY |
| 1000 EUR | 8108.232257 CNY |
| 5000 EUR | 40541.161285 CNY |
| 10000 EUR | 81082.32257 CNY |
| 50000 EUR | 405411.61285 CNY |
| CNY | EUR |
|---|---|
| 1 CNY | 0.123331445 EUR |
| 5 CNY | 0.616657225 EUR |
| 10 CNY | 1.233314449 EUR |
| 25 CNY | 3.083286123 EUR |
| 50 CNY | 6.166572246 EUR |
| 100 CNY | 12.333144492 EUR |
| 500 CNY | 61.665722462 EUR |
| 1000 CNY | 123.331444924 EUR |
| 5000 CNY | 616.657224619 EUR |
| 10000 CNY | 1233.314449238 EUR |
| 50000 CNY | 6166.57224619 EUR |
This set of widgets will provide inline currency conversions to your e-commerce websites for helping your customers around the world to understand your prices in their local currencies, or even in crypto currencies.
Our widgets will work on HTML entities, no Javascript programming is required.
For example, you got an e-commerce website selling T-shirts displaying a list of products like:
which is represented by the HTML code:
<ul>
<li>Red T-shirt EUR 45</li>
<li>Blue T-shirt EUR 123</li>
</ul>
First, we will be including a "script" tag to boot the widgets and we will configure the base currency of our e-commerce website inside of an empty HTML tag like in the next HTML code snippet:
<script src='https://currencyexchange.lucentinian.com/tools.js' async>
</script>
<div
class="lucentinian-currencyexchange-cfg"
data-base="EUR"
data-target="CNY"
data-decimals="2"
></div>
Additionally you can set an initial target currency (later its value will be overrided by the change target currency widget) and fix the number of decimals you want to be displayed like in the previous example.
Please notice the configuration is mandatory, otherwise the widgets won't start.
Now we will be bounding the prices with an HTML entity like "span", assign them the class "lucentinian-currencyexchange", and add the data attribute "data-amount" with the original price in the configured base currency like in the next HTML code nippet:
<ul>
<li>Red T-shirt <span
class='lucentinian-currencyexchange'
data-amount='45'>EUR 45</span>
</li>
<li>Blue T-shirt <span
class='lucentinian-currencyexchange'
data-amount='123'>EUR 123</span>
</li>
</ul>
After the changes, the list is now displayed as:
As it was mentioned above, there is a widget that can be included to allow your customer to change the target currency you may have fix at the beginning and use other by including an empty HTML tag with the class "lucentinian-currencyexchange-cfg" as in the next HTML code snippet:
<div>
Change currency
<span class='lucentinian-currencyexchange-select-currency'>
</span>
</div>
which will be displayed as:
Please notice that the changes of your customer will have priority over the initial target currency configuration, and the changes will be stored in the web browser.
Finally, but not least, prices can be fixed for specific currencies instead of using the converted value. In order to archive this, to the HTML entity that are bounding the price, add the data attribute "data-CURRENCY_CODE-amount" with the fix value. From the example above, a HTML code snippet will look like:
<div>Red T-shirt <span
class='lucentinian-currencyexchange'
data-amount='45'
data-CNY-amount='123'>EUR 45</span>
</div>
which will be displayed with "CNY 123" if the user has selected the currency CNY in the change currency widget of above: