bvdl․io
bvdl․io
  • 97
  • 817 292
Animated Text using VueJS #2
#vuejs #vue #vite #tailwindcss
Learn how to animate text as if it was typed on the screen, using the frontend web framework VueJS.
We go over how to animated the blinker infont of the text, and how make it go away once we are done typing. We cover on hover transitions with tailwindcss. We use VueJS emits to signal to parent components with an event. Using those events to communicate that lines should animate in sequence, where each line triggers the start of the next. Finally, we use mouseenter and mouseleave to track our components hover state, and animate in an svg arrow next to our component.
- Time Codes -
0:00 - Create the Blinker
2:13 - Animate sequentially
5:20 - Indicate on-hover
- keywords -
vuejs, tailwind, tailwindcss, vite, webframework, framework, web, development, setup, tutorial, guide, howto, programming, coding, vscode, tips, javascript, html, css, templates, laravel, yii, computed, mounted, data(), vbase, hover animation, typing animation, listeners
มุมมอง: 611

วีดีโอ

Animating the writing of text using VueJS & Tailwindcss
มุมมอง 3109 หลายเดือนก่อน
#vuejs #vue #vite #tailwindcss Learn how to animate text as if it was typed on the screen, using the frontend web framework VueJS. This video will get you familiar with important web programming skills, and goes over how set up a VueJS project using Vite, and installing tailwindcss inside it. - Time Codes - 0:00 - Setup VueJS with Vite 0:42 - Setup Tailwind 2:02 - Removing the default content 2...
FOR-ELSE?! What does it do?
มุมมอง 638ปีที่แล้ว
Discover the unique for-else loop construct in Python in this brief tutorial. Uncover its use-cases and learn how it can make your code more readable and expressive. - Time Codes - 0:00 - Intro 0:11 - What it does 0:50 - Example use case 1:50 - Outro - keywords - Python programming, for-else loop, control flow, code readability, code efficiency, loop constructs, Python loops, programming logic,...
Virtual Environments Explained!
มุมมอง 957ปีที่แล้ว
Virtual Environments are super useful for developers. I explain the essence of what virtual environments are, whey solve, and what they have to offer. Finally I demonstrate an example of how to set up python virtual environment, using pipenv. We do all the usual things that are also explained in the video: create, use, and transfer virtual environments. python pip: www.python.org/ - Music - Lin...
A Compiler For Our Own Programming Language // Full Guide
มุมมอง 41Kปีที่แล้ว
Creating a programming language is a dream for many programmers. In this video I go over how you can create a simple compiler a for a programming language that we designed and interpreted in the previous video. This will help you get started creating and understanding how make and gain an intuition for your own compiler and programming language. Make sure to let me know in the comments if you w...
Making a Programming Language & Interpreter in under 10 minutes!
มุมมอง 49Kปีที่แล้ว
Creating a programming language is a dream for many programmers. In this video I go over how you can create a simple programming language and in interpreter for that language so you can run programs written in your own programming language. This will help you get started creating and understanding how make your own (more complex) programming language. Make sure to let me know in the comments if...
OpenAI Function Calling Explained!
มุมมอง 757ปีที่แล้ว
Lets go over the new feature for the OpenAI ChatCompletion function calling api. We discuss the changes of the new update, what the function calling api allows you to do, and we look at some example in code. We also go over a method to use the function calling api just to format the desired prompt response, without it being the goal of the called function. - Source - I was made aware of the out...
Binary Search To Find A Range of Numbers
มุมมอง 845ปีที่แล้ว
Responding to a request from the comments. About how to use a 'binary search' approach to finding a number larger or equal to another number in a sorted array. I go over visually what we are going to do, and then I go over python code to do it in practice. The comment: th-cam.com/video/QLsBsWLvz-k/w-d-xo.html Music: th-cam.com/video/HryvNaqGnXc/w-d-xo.html Timecodes 0:00 - Intro 0:19 - Breaking...
How AI Can Retrieve Memories! (Vector-Based Retrieval)
มุมมอง 1.4Kปีที่แล้ว
Going over what vector databases are, a high level explanation of how they work, and going over #python code explaining how to use the ChromaDB vector database yourself, using Langchain and OpenAI-Embeddings. We then use the ChromaDB as long term memory for a OpenAI GPT (LLM) model. Google Colab: colab.research.google.com/drive/1yRQiyOiPB0I100f0nJ1O0f_jD1rEiJxP?usp=sharing ChromaDB: www.trychro...
SAFE Multithreading with Mutex Locks
มุมมอง 3.8Kปีที่แล้ว
SAFE Multithreading with Mutex Locks
Do YOU Know What Most People Don't??
มุมมอง 1.1Kปีที่แล้ว
Do YOU Know What Most People Don't??
Lets Code Tic-Tac-Toe!
มุมมอง 526ปีที่แล้ว
Lets Code Tic-Tac-Toe!
Lets Code Hangman!
มุมมอง 1.2Kปีที่แล้ว
Lets Code Hangman!
Depth First Search (DFS) Explained - Visual
มุมมอง 3.2Kปีที่แล้ว
Depth First Search (DFS) Explained - Visual
Implementing a solution using flow networks and algorithms
มุมมอง 531ปีที่แล้ว
Implementing a solution using flow networks and algorithms
Are Hash Table Lookups slower then List Lookups, when looking through a small amount of values?
มุมมอง 480ปีที่แล้ว
Are Hash Table Lookups slower then List Lookups, when looking through a small amount of values?
How To Use FLOW NETWORKS To Solve Problems!
มุมมอง 1.4Kปีที่แล้ว
How To Use FLOW NETWORKS To Solve Problems!
Merge Sort In 6 Minutes! Visuals + Code
มุมมอง 1.5Kปีที่แล้ว
Merge Sort In 6 Minutes! Visuals Code
Why Do They Both Exist?
มุมมอง 2.2Kปีที่แล้ว
Why Do They Both Exist?
Hash Functions Explained, Step by Step, Zero Math!
มุมมอง 11Kปีที่แล้ว
Hash Functions Explained, Step by Step, Zero Math!
How Bubbles Help Computers To Sort Numbers!? - The Bubble Sort Algorithm
มุมมอง 3.4Kปีที่แล้ว
How Bubbles Help Computers To Sort Numbers!? - The Bubble Sort Algorithm
Finding The Depth of A Recursively Defined Binary Tree!
มุมมอง 769ปีที่แล้ว
Finding The Depth of A Recursively Defined Binary Tree!
Insertion Sort Explained using Animations.
มุมมอง 11Kปีที่แล้ว
Insertion Sort Explained using Animations.
Why Is Finding an Item in a Hashtable SO MUCH FASTER Than Finding an Item In a List?!
มุมมอง 304Kปีที่แล้ว
Why Is Finding an Item in a Hashtable SO MUCH FASTER Than Finding an Item In a List?!
Balancing BSTs: From Theory to Practice with Python and Visual Examples!
มุมมอง 767ปีที่แล้ว
Balancing BSTs: From Theory to Practice with Python and Visual Examples!
Balancing BSTs: From Theory to Practice with Python and Visual Examples!
มุมมอง 5Kปีที่แล้ว
Balancing BSTs: From Theory to Practice with Python and Visual Examples!
Binary Search Explained: A Step-by-Step Guide
มุมมอง 761ปีที่แล้ว
Binary Search Explained: A Step-by-Step Guide
Boost Your Programming Skills: Creating, Mapping, and Filtering Lists in Haskell, Java, and Python
มุมมอง 421ปีที่แล้ว
Boost Your Programming Skills: Creating, Mapping, and Filtering Lists in Haskell, Java, and Python
Define REAL WORLD Objects in Programming - Object Oriented Programming #python #coding #programming
มุมมอง 388ปีที่แล้ว
Define REAL WORLD Objects in Programming - Object Oriented Programming #python #coding #programming
Learn How to Use Higher-Order Functions in Haskell with an Easy Example
มุมมอง 703ปีที่แล้ว
Learn How to Use Higher-Order Functions in Haskell with an Easy Example