top of page

MENU

BACK TO SITE

HOME

01

Services

02

templates

03

insights

04

contact

05

code base

04

Log In

Templates

My Orders

Settings

Log Out

​ALSO WATCH THIS

Welcome to 365.JPG - Web Development Studio.

 Our website is available at https://365jpg.art, where we offer web development services and digital products such as website templates. These terms and conditions outline the rules and regulations for the use of our website and services.

By accessing this website, you agree to be bound by these terms and conditions. If you disagree with any part of the terms, please do not use our website.

The content, layout, design, data, databases, and graphics on this website are protected by intellectual property rights and laws. Except as expressly permitted, no part of the website may be copied, reproduced, modified, or used without prior written permission from us.

We implement suitable measures and controls to secure your personal data from unauthorized access, modification, disclosure, or destruction.
 

  • Encryption: We use encryption technology to ensure the secure transmission of your personal data over the internet.

  • Data Management: Your personal information is stored in secure networks and is only accessible by a limited number of persons who have special access rights to such systems and are required to keep the information confidential.

If you wish to purchase any product or service made available through the website, you may be asked to supply certain information relevant to your purchase including, without limitation, your credit card number, the expiration date of your credit card, your billing address, and your shipping information.

The main advantages of using Velo:


  • Integrating external APIs.

  • Working with dynamic pages and databases.

  • Creating an interactive interface.

  • Setting up custom animations and functions.

What is Velo code?

Velo is a powerful tool for adding JavaScript to your website. It allows you to create complex logic, manage databases, interact with users, and even connect external services via APIs.

Steps to create a website in Wix Studio with Velo


  1. Sign Up and Choose a Template: Start by choosing a template that suits your goals. You can choose a design that is already adapted to your theme.


  2. Enable Velo: Enable Velo in the editor settings. This will open access to writing code and the database.


  3. Create dynamic pages: Use Wix databases to create pages that automatically fill in with data.

    Example code for filtering in a repeater:

import wixData from 'wix-data';

$w.onReady(() => {

    $w("#dropdown1").onChange(() => {

        const selectedValue = $w("#dropdown1").value;

        $w("#dataset1").setFilter(wixData.filter().eq("category", selectedValue));

    });

});

  1. Adding custom elements: Make your site unique by adding special elements such as interactive buttons, sliders or calculators.


  2. API integration: You can connect third-party services, for example, for payment or integration with CRM systems.

Benefits of using Velo


  • Flexibility: You can create features that fully meet your requirements.

  • Dynamic: Easily add changing content.

  • Easy integration: APIs and Webhooks greatly simplify the integration of third-party services.

  • Time saving: Quickly launch sites with ready-made templates and custom features.

Application example:


Imagine you are creating a website for an online store. With Velo you can:


  • Filter products by category or price.

  • Implement the function of adding products to the cart.

  • Integrate payment services.


Example code for filtering products:

import wixData from 'wix-data';

$w.onReady(() => {
    $w("#priceSlider").onChange(() => {
        const maxPrice = $w("#priceSlider").value;
        $w("#dataset1").setFilter(wixData.filter().lt("price", maxPrice));
    });
});


Wix Studio with Velo is a modern tool that allows you to create not just websites, but innovative, functional web solutions that meet the highest requirements. Whether you need help writing code for your site, implementing complex integrations, or creating a functional and stylish web resource, we will be happy to help.


Contact us, and we will professionally implement your ideas, create a site that not only looks modern, but also works flawlessly. Let's make your project a success together!

Website creation with Wix Studio + Velo Code
Industry Features

Website creation with Wix Studio + Velo Code

Wix Studio is a modern website building platform with a built-in Velo code editor. It combines a convenient visual editor with the ability to write JavaScript code.

bottom of page