🎧 New: AI-Generated Podcasts Turn your study notes into engaging audio conversations. Learn more

Computer Multimedia & Animation.pdf

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Full Transcript

KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Course Code: 21BCA3C11L Course Title: Computer Multimedia and Animation Formative Assessment marks: 40 marks Summative Assessment Mark...

KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Course Code: 21BCA3C11L Course Title: Computer Multimedia and Animation Formative Assessment marks: 40 marks Summative Assessment Marks: 60 marks UNIT 1: Web Design: Origins and evolution of HTML, Basic syntax, Basic text markup, Images, Lists, Tables, Forms, Frame, Overview and features of HTML5. CSS: Introduction, Levels of style sheets, Style specification formats, Selector forms, Property value forms, Font properties, List properties, Color, Alignment of text, The and tags; Overview and features of CSS3. JavaScript: Object orientation and JavaScript; General syntactic characteristics; Primitives, operations, and expressions; Screen output and keyboard input UNIT 2: Animation: What is an Animation? The Start and End States, Interpolation, Animations in HTML. All About CSS Animations, Creating a Simple Animation, Detailed Look at the CSS Animation Property, Key frames, Declaring Multiple Animations, Wrap-up. All about CSS Transitions, Adding a Transition, Looking at Transitions in Detail, the Longhand Properties, Longhand Properties vs. Shorthand Properties, Working with Multiple Transitions UNIT 3: HTML5 – SVG: Viewing SVG Files, Embedding SVG in HTML5, HTML5 − SVG Circle, HTML5 − SVG Rectangle, HTML5 − SVG Line, HTML5 − SVG Ellipse, HTML5 − SVG Polygon, HTML5 − SVG Polyline, HTML5 − SVG Gradients, HTML5 − SVG Star. UNIT 4: HTML5 – CANVAS: The Rendering Context, Browser Support, HTML5 Canvas Examples, Canvas - Drawing Rectangles, Canvas - Drawing Paths, Canvas - Drawing Lines, Canvas - Drawing Bezier Curves, Canvas - Drawing Quadratic Curves, Canvas - Using Images, Canvas - Create Gradients. UNIT 5: HTML5 - Styles and Colors, Canvas - Text and Fonts, Canvas - Pattern and Shadow, Canvas - Save and Restore States, Canvas - Translation, Canvas - Rotation, Canvas - Scaling, Canvas - Transforms, HTML5 Canvas - Composition, Canvas – Animations.. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 1 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation UNIT 1 WEB DESIGN Web Design: Origins and evolution of HTML, Basic syntax, Basic text markup, Images, Lists, Tables, Forms, Frame, Overview and features of HTML5. CSS: Introduction, Levels of style sheets, Style specification formats, Selector forms, Property value forms, Font properties, List properties, Color, Alignment of text, The and tags; Overview and features of CSS3. JavaScript: Object orientation and JavaScript; General syntactic characteristics; Primitives, operations, and expressions; Screen output and keyboard input WEB DESIGN  Web design encompasses the process of creating and designing the visual appearance and user experience of websites.  It involves various elements such as layout, colors, typography, graphics, and interactive features to enhance the aesthetics and functionality of a website. ORIGINS AND EVOLUTION OF HTML HTML STRUCTURE BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 2 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation  HTML (Hypertext Markup Language) provides a structured way to define the elements and content of a web page.  The structure of an HTML document consists of several key components: SL.No Element Definition  The DTD defines the version of HTML being used in the Document Type 1 document. It is typically declared at the beginning of an HTML Declaration (DTD) file using the tag.  The element is the root element of an HTML document. 2 It encapsulates the entire document and contains two main sections: the and the.  The element provides metadata and other non-visible information about the document. 3  It includes elements such as the document title (), character encoding (), CSS stylesheets (), JavaScript files (), and more.  The element contains the visible content of the web page.  It includes elements such as headings (, , etc.), 4 paragraphs (), images (), links (), lists (, , ), tables (, , ), forms (, , ), and other structural elements.  Comments can be added to an HTML document to provide explanatory or informational notes to developers. 5 Comments  They are written within tags and are not displayed on the web page. My Web Page Welcome to My Web Page This is a paragraph of text. Link BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 3 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation BASIC SYNTAX  When it comes to web development and programming, different languages have their own syntax rules.  Here are the basic syntax rules for a few popular languages: SL.No Language Definition Example  HTML uses tags to define the Content goes HTML structure and content of a web page. here (Hypertext 1  Tags are written within angle Markup brackets (< >) and are typically used Language) in pairs (opening and closing tags).  CSS is used to style and format the selector { property: value; } CSS appearance of HTML elements. 2 (Cascading  CSS rules consist of a selector Style Sheets) (identifies the element to style) and a declaration block (defines the styles).  JavaScript is a programming var variableName = value; language used for client-side and 3 JavaScript server-side scripting.  JavaScript statements are typically terminated by a semicolon (;).  Python is a popular high-level variable_name = value programming language known for its if condition: readability and simplicity. # Code block 4 Python  Indentation is crucial in Python, as it statement determines the structure of code blocks (e.g., loops, conditionals).  Java is an object-oriented public class MyClass { programming language widely used public static void for building applications. main(String[] args) { 5 Java  Java code is organized into classes // Code block and methods. int variableName = value;  Statements are terminated with a } semicolon (;). }  PHP is a server-side scripting tags. } ?> BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 4 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation BASIC TEXT MARKUP  Basic text markup refers to the use of formatting and styling techniques to enhance the appearance and structure of text.  Markup languages like HTML provide tags or syntax to apply formatting to text.  Here are some commonly used basic text markup techniques: SL.No Element Definition Example  HTML: Use to This is a Heading 1 1 Headings tags for different heading levels.  HTML: Use tag to define This is a paragraph of text. 2 Paragraphs paragraphs.  HTML: Use or This text is bold. 3 Bold tags to make text bold.  HTML: Use or tags This text is italicized. 4 Italic to italicize text.  HTML: Use tag to This text is underlined. 5 Underline underline text.  HTML: Use or This text is strikethrough. 6 Strikethrough tags to create strikethrough text.  HTML: Use and This is a subscript Subscript and 7 tags for subscript and and this is a Superscript superscript text, respectively. superscript.  HTML: Use tag to create Li nk  HTML: Use This is a 9 Blockquotes tag to create blockquotes for blockquote. quoted text. IMAGES, LISTS, TABLES, FORMS TAGS SL.No Element Definition Example  HTML: Use the tag to insert  The src attribute specifies the image 1 Images file URL, and the alt attribute provides alternative text for accessibility.  HTML: Use for unordered (bullet) lists and for ordered Item 1 2 Lists (numbered) lists. List items are Item 2 defined with tags. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 5 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation  HTML: Use the tag to create tables, and use for table rows, for table headers, and for Header 1 3 Tables table data cells. Data 1  HTML: Use the tag to create like , , and Name: for form fields. URL to which the form data will be submitted, and the method attribute or POST). FRAMES TAG  HTML: Frames are not commonly used in modern web design due to accessibility and usability issues.  Instead, techniques like CSS and JavaScript are used for layout and content organization.  However, if needed, frames can be created using the or tags.  The src attribute specifies the source URL of the content to be displayed within the frame. OVERVIEW AND FEATURES OF HTML5  HTML5 is the latest version of the Hypertext Markup Language, which is the standard markup language for creating and structuring content on the web.  HTML5 introduces several new features and enhancements that improve the functionality, multimedia support, and interactivity of web pages. Key features and capabilities of HTML5: SL.No Features Definition  HTML5 introduces a set of semantic elements that provide more meaningful structure and help describe the content of a webpage. Semantic 1  These elements include , , , , Elements , , and more.  HTML5 includes native support for embedding multimedia content without the need for third-party plugins like Adobe Flash. Multimedia 2  The and elements allow developers to embed video Support and audio content directly into web pages, with support for different formats and customization options. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 6 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation  The element in HTML5 provides a powerful and versatile drawing surface for rendering graphics, animations, and interactive 3 Canvas visualizations directly within a web page.  It enables the creation of dynamic and interactive content using JavaScript.  HTML5 provides a Geolocation API that allows websites to access and utilize location information of a user's device, if permitted by the user. 4 Geolocation  This feature enables applications such as location-based services, mapping, and real-time tracking.  New input types such as , , and provide specialized Forms 5 input fields with built-in validation. Enhancements  The element allows the specification of a list of predefined options for input fields.  HTML5 includes the ability to create offline web applications that can function even when the user is not connected to the internet. Offline Web 6  The Application Cache API allows developers to specify which Applications resources should be cached locally, enabling offline access and faster load times.  HTML5 provides two mechanisms for client-side storage: localStorage and sessionStorage. 7 Web Storage  These APIs allow web applications to store data locally on the user's device, providing a way to persist data across sessions or temporarily store data during a browsing session.  HTML5 introduces native support for drag and drop interactions.  This feature enables users to drag elements on a web page and drop 8 Drag and Drop them into designated areas, allowing for more intuitive user interactions and data transfer.  HTML5 includes the and elements, which allow developers to specify multiple image sources and automatically serve Responsive the most appropriate image based on factors such as screen size, 9 Images resolution, and device capabilities.  This helps optimize the loading and display of images across different devices and network conditions.  HTML5 introduces Web Workers, which are background scripts that run separately from the main web page, allowing for parallel processing and better performance. 10 Web Workers  Web Workers enable the execution of complex tasks without blocking the main user interface, improving the responsiveness and interactivity of web applications. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 7 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation CSS  CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation and visual appearance of HTML and XML documents.  It allows web developers to control the layout, colors, fonts, and other visual aspects of web pages, separate from the underlying structure and content.  CSS works by selecting HTML elements and applying styles to them using various properties and values.  Styles can be applied directly to HTML elements using inline styles, included within the HTML file using internal stylesheets, or linked externally using external stylesheets. Levels of CSS SL.No Level Definition  The first level of CSS, introduced in 1996, provided basic styling capabilities 1 CSS1 such as font and color properties, text alignment, and margins.  CSS1 laid the foundation for subsequent CSS versions.  Released in 1998, CSS2 expanded on CSS1 with additional features, including positioning and layout properties, support for media types (print, screen, etc.), 2 CSS2 and improved selector options.  CSS2 also introduced the concept of pseudo-classes and pseudo-elements.  CSS3 is not a single version but rather a collection of separate modules that are being developed and released independently.  CSS3 introduces numerous new features, enhancements, and capabilities that 3 CSS3 further extend the styling capabilities of CSS. Some notable features of CSS3 include border-radius, box-shadow, gradients, transitions, animations, media queries, and more. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 8 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation  While there is no official CSS4 specification, the term "CSS4" is sometimes used to refer to ongoing developments and proposals for future versions of CSS 4 CSS4 beyond CSS3.  New features and modules are being proposed and implemented as separate modules rather than a single monolithic version. STYLE SPECIFICATION FORMATS  There are multiple formats and methodologies available for specifying styles in CSS.  Here are some commonly used style specification formats: SL.No Selector Definition Example  Inline styles are applied directly to This is a attribute. CSS properties and values paragraph. are specified within the attribute's 1 Inline Styles value.  Inline styles have high specificity but can result in code duplication if used extensively.  Internal stylesheets are defined within the tags within the section of an HTML document. CSS p{ rules are written directly within the color: blue; block font-size: 16px; Internal 2  Internal stylesheets allow you to } Stylesheets define styles for specific HTML elements within the same HTML file. This is a paragraph.  External stylesheets are separate CSS files linked to HTML documents using written in the external CSS file, which is referenced in the href attribute of the External 3 tag This is a paragraph. Stylesheets  External stylesheets promote separation of concerns by keeping styles separate from HTML, allowing for easier maintenance and reuse of styles across multiple HTML files. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 9 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation  CSS preprocessors, such as Sass (Syntactically Awesome Style Sheets) and Less, introduce additional features and functionality to CSS. CSS  They use their own syntax and provide features like variables, nesting, 4 Preprocessors mixins, functions, and more.  Preprocessors transform the preprocessed code into standard CSS, which is then used in the HTML documents. CSS  CSS frameworks like Bootstrap, Foundation, and Bulma offer pre- 5 Frameworks designed styles, layout systems, and components. SELECTOR FORMS SL.No Selector Definition Example  Selects elements based on p selects all elements. 1 Element Selector their HTML tag name.  Selects elements based on.my-class selects all elements with 2 Class Selector the value of their class class="my-class" attribute  Selects an element based on #my-id selects the element with 3 ID Selector the value of its id attribute. id="my-id".  Selects elements based on [type="submit"] selects all elements 4 Attribute Selector the presence or value of an with type="submit". attribute. PROPERTY VALUE FORMS SL.No Values Definition Example  Specifies a px for pixels, em for relative to the font size of 1 measurement the element, rem for relative to the root font Length Units value. size.  Specifies colors. #RRGGBB or #RGB for hexadecimal colors, 2 rgb(r, g, b) for RGB values, rgba(r, g, b, a) for Color Values RGB values with alpha (transparency) channel.  Specifies a width: 50% sets the width to 50% of the parent percentage container. 3 Percentage Values relative to a parent value.  Specifies a URL. background-image: url('image.jpg') sets the 4 URL Values background image using the specified URL. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 10 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation FONT PROPERTIES SL.No Attribute Definition 1 font-family  Specifies the font family or a list of fonts for text. 2 font-size  Specifies the size of the font. 3 font-weight  Specifies the thickness of the font. 4 font-style  Specifies the style of the font (normal, italic, oblique). 5 text-decoration  Specifies decorations like underline, overline, line-through. 6 text-align  Specifies the horizontal alignment of text (left, right, center, justify). LIST PROPERTIES SL.No Attribute Definition 1 list-style-type  Specifies the type of list marker (disc, decimal, square, etc.). 2 list-style-image  Specifies an image as the list marker. 3 list-style-position  Specifies the position of the list marker (inside or outside the list item). COLOR SL.No Attribute Definition 1 color  Specifies the text color. 2 background-color  Specifies the background color. 3 border-color  Specifies the color of borders. 4 opacity  Specifies the opacity of an element (0.0 to 1.0). ALIGNMENT OF TEXT SL.No Attribute Definition 1 text-align  Specifies the horizontal alignment of text (left, right, center, justify).  Specifies the vertical alignment of inline elements (baseline, top, middle, 2 vertical-align bottom). 3 line-height  Specifies the height of a line of text, affecting vertical spacing. AND TAGS  The and tags are two commonly used HTML tags that serve different purposes in structuring and styling web content  Difference between the and tags lies in their default behavior and intended usage.  is an inline element used for small, inline-level styling or grouping,  While is a block-level element used for larger sections, layout structures, or grouping of content. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 11 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation SL.No Tag Definition Example  The tag is an inline element used to This text is portions of text or inline elements within a highlighted. larger block of content.  It does not create a line break and is 1 typically used for small, inline-level styling or grouping of elements.  It does not inherently have any visual or semantic meaning and is often used in conjunction with CSS to apply styles or JavaScript to add functionality.  The tag is a block-level element used to group and organize larger sections of Title content or to create layout structures within Paragraph of text. a web page.  It is a versatile container that does not have Another 2 any inherent semantic meaning, allowing paragraph. developers to apply custom styling or manipulate the content within it.  It can contain other block-level or inline elements, and multiple tags can be nested to create complex layouts. JAVA SCRIPT  JavaScript is a high-level programming language primarily used for client-side web development.  It allows developers to add interactivity, dynamic behavior, and functionality to web pages. OBJECT ORIENTATION AND JAVASCRIPT  Java Script is an object-oriented programming language, which means it supports the concepts of objects, classes, and inheritance. Key points regarding object orientation in JavaScript: 1. Objects and Properties 2. Classes and Prototypes 3. ECMAScript 2015 (ES6) Classes 4. Inheritance 5. Encapsulation and Abstraction 6. Polymorphism and Dynamic Typing BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 12 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation GENERAL SYNTACTIC CHARACTERISTICS  JavaScript has several syntactic characteristics that define its structure and coding conventions.  Here are some general syntactic characteristics of JavaScript: SL.No Attribute Definition  JavaScript is case-sensitive, meaning that myVariable and myvariable 1 Case Sensitivity are considered as different variables.  JavaScript code consists of statements, which are individual instructions or commands. Statements and  Statements in JavaScript are typically terminated with a semicolon (;), 2 Semicolons although it is not always required.  JavaScript has automatic semicolon insertion (ASI) rules that insert semicolons in certain cases,  JavaScript supports single-line comments, which are denoted by //, and 3 Comments multi-line comments, which are enclosed between.  Comments are used to add explanatory  Variables in JavaScript are declared using the var, let, or const 4 Variables keywords.  The var keyword is used for declaring variables with function scope.  JavaScript has several built-in data types, including Primitive types & 5 Data Types Complex types  JavaScript supports various operators for performing arithmetic, comparison, logical, assignment, and other operations. 6 Operators  Examples of operators include +, -, *, / for arithmetic, ==, ===, !=, !== for comparison, &&, ||, ! for logical operations, and =, +=, -= for assignment.  JavaScript provides control flow structures such as if statements, for 7 Control Flow and while loops, switch statements, and conditional (ternary) operators (condition ? expression1 : expression2).  JavaScript functions are declared using the function keyword, followed by a name (optional for anonymous functions), parentheses for 8 Functions parameters, and curly braces for the function body.  Functions can be assigned to variables, passed as arguments to other functions, and returned as values from other functions. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 13 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation PRIMITIVES  In JavaScript, there are several primitive data types that are used to represent simple values. These primitive types are: SL.No Type Definition 1 Number  The number type represents numeric values.  The string type represents textual data. 2 String  Strings are enclosed in single quotes (') or double quotes ("),  The boolean type represents logical values. 3 Boolean  It has two possible values: true and false 4 Null  The null type represents the absence of any object value.  The undefined type represents a variable that has been declared but has not Undefined been assigned a value. Example let numberValue = 42; // number let stringValue = "Hello"; // string let booleanValue = true; // boolean let nullValue = null; // null let undefinedValue = undefined; // undefined let symbolValue = Symbol("unique"); // symbol JAVASCRIPT, OPERATIONS AND EXPRESSIONS Operators:  Operators are symbols or keywords that perform operations on operands to produce a value.  JavaScript supports various types of operators, including: SL.No Operators Definition  + (addition), - (subtraction), * (multiplication), / (division), % (remainder), 1 Arithmetic ++ (increment), -- (decrement), etc.  == (equality), === (strict equality), != (inequality), !== (strict inequality), 2 Comparison > (greater than), < (less than), >= (greater than or equal to), (right 5 Bitwise shift), >>> (unsigned right shift), etc.  (condition ? expression1 : expression2), typeof operator, instanceof 6 Ternary operator, etc. Expressions:  An expression is a combination of values, variables, operators, and function calls that evaluates to a resulting value.  Expressions can be simple or complex, and they can include arithmetic, comparison, logical, and other operators. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 14 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation For example: 1. Arithmetic expression: 3 + 4 * 2 evaluates to 11. 2. Comparison expression: 5 > 3 evaluates to true. 3. Logical expression: (x > 0) && (y < 10) evaluates to either true or false. SCREEN OUTPUT AND KEYBOARD INPUT.  In JavaScript, you can interact with the user through screen output and keyboard input using various methods and functions.  Here are some common techniques for screen output and keyboard input in JavaScript: Screen Output: SL.No Type Definition  The console.log() method is used to display output in the browser 1 console.log() console. It is useful for debugging and logging messages.  The document.write() method writes HTML content directly to the 2 document.write() document. It is primarily used for testing and simple demonstrations. DOM  You can manipulate the Document Object Model (DOM) to update 3 Manipulation the content of HTML elements dynamically. Example  document.getElementById("myElement").innerHTML = "Hello, World!"; Keyboard Input: SL.No Type Definition  The prompt() function displays a dialog box that prompts the user to 1 prompt() enter input. The user can enter text, which is then returned as a string. Example document.getElementById("myElement").innerHTML = "Hello, World!";  You can attach event listeners to specific elements or the entire 2 Event Listeners document to listen for keyboard events such as key presses or key releases. This allows you to respond to user input in real-time. document.addEventListener("keydown", function(event) { Example console.log("Key pressed: " + event.key); }); BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 15 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation UNIT 2 ANIMATION Animation: What is an Animation? The Start and End States, Interpolation, Animations in HTML. All About CSS Animations, Creating a Simple Animation, Detailed Look at the CSS Animation Property, Key frames, Declaring Multiple Animations, Wrap-up. All about CSS Transitions, Adding a Transition, Looking at Transitions in Detail, the Longhand Properties, Longhand Properties vs. Shorthand Properties, Working with Multiple Transitions WHAT IS AN ANIMATION  Animation refers to the process of creating the illusion of movement and bringing static images or objects to life.  It involves a series of sequential images or frames that are displayed rapidly in succession, creating the perception of motion. THE START AND END STATES  In the context of animation, the "start state" and "end state" refer to the initial and final positions or conditions of an animated object or scene.  They represent the beginning and ending points of an animation sequence. Start state  The initial state or frame from which the animation begins.  Defines the position, appearance, and attributes of the animated elements before any movement or transformation takes place. End state  The final state or frame that the animated object or scene transitions to at the conclusion of the animation sequence.  It defines the desired position, appearance, and attributes of the elements after all the intended movements, transformations, or actions have been completed. INTERPOLATION  Interpolation in the context of animation refers to the process of generating intermediate frames or states between two key frames to create smooth and fluid motion.  It is a technique used to fill in the gaps between the start and end states in an animation sequence. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 16 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation ANIMATIONS IN HTML  In HTML, animations can be created using various techniques and technologies, including CSS (Cascading Style Sheets) and JavaScript.  Here are a few methods commonly used for creating animations in HTML: SL.No Animations Definition  CSS transitions allow you to define the change in style or property of CSS an element over a specified duration. 1 Transitions  Transitions are triggered by changes in CSS properties, such as hover, focus, or class toggling.  CSS keyframe animations provide more complex and customizable animations. CSS Keyframe 2  keyframes at specific percentages of an animation's duration using the Animations @keyframes rule, you can control the intermediate states of an element.  CSS animation libraries, like Animate.css or Hover.css, offer pre-built CSS animation effects that can be easily added to HTML elements by 3 Animations applying predefined CSS classes. with Libraries  These libraries provide a wide range of animation options, including fades, slides, rotations, and more.  JavaScript libraries, such as GreenSock (GSAP) or Anime.js, provide JavaScript powerful animation capabilities by leveraging JavaScript. 4 Animation  JavaScript animations are typically triggered by events or using Libraries functions to manipulate CSS properties directly.  For more intricate and game-like animations, the HTML5 canvas HTML5 element can be utilized. 5 Canvas  The canvas provides a drawing API that allows you to create dynamic and interactive graphics using JavaScript. ALL ABOUT CSS ANIMATIONS  CSS animations allow you to create dynamic and visually appealing animations directly within your HTML and CSS code.  With CSS animations, you can animate various properties of HTML elements, such as position, size, color, opacity, and more. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 17 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation CREATING A SIMPLE ANIMATION Example of creating a simple CSS animation that moves an element across the screen: HTML: CSS:.box { width: 100px; height: 100px; background-color: blue; position: relative; animation-name: slide; animation-duration: 2s; animation-timing-function: linear; animation-iteration-count: infinite; } @keyframes slide { 0% { left: 0; } 100% { left: 300px; }} 1. We create a element with the class name "box". 2. In CSS, we define the initial styles for the "box" element, such as its width, height, background color, and position (relative). 3. We use the animation-name property to specify the name of the animation, in this case, "slide". 4. The animation-duration property sets the duration of the animation to 2 seconds. 5. animation-timing-function is set to "linear" to create a constant speed motion. 6. animation-iteration-count is set to "infinite" to make the animation repeat indefinitely. 7. The @keyframes rule defines the intermediate states of the animation. 8. At the beginning (0%), the left position of the element is set to 0. 9. At the end (100%), the left position is set to 300px, causing the element to move 300 pixels to the right. 10. When you view the HTML file with the provided CSS, you'll see the blue box element moving smoothly from left to right in a continuous loop. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 18 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Detailed Look at the CSS Animation Property, Keyframes, Declaring Multiple Animations, Wrap-up CSS Animation Property: 1.  The animation property is a shorthand property that combines multiple animation- related properties into a single declaration. animation: name duration timing-function delay iteration-count direction fill-mode syntax play-state; Specifies the name of the keyframe animation to be applied. It can be a single animation Name or a comma-separated list of animations. Sets the duration of the animation, which can be specified in seconds (s) or milliseconds duration (ms). timing- Defines the timing function that controls the acceleration and deceleration of the function animation. Common values include ease, linear, ease-in, ease-out, and ease-in-out. Specifies the delay before the animation starts, which can also be specified in seconds (s) Delay or milliseconds (ms). iteration- Sets the number of times the animation should repeat. It can be a positive integer, infinite count for indefinite looping, or fractional values like 0.5 for partial iterations. Determines whether the animation plays in the forward direction (normal), backward direction direction (reverse), or alternates between forward and backward (alternate). fill- Specifies how the element should be styled before and after the animation. Common mode values include none, forwards, backwards, and both. play- Allows you to pause and resume an animation using paused or running. state Keyframes:  Keyframes define the intermediate states and styles of an animation. 2.  They are specified using the @keyframes rule and divided into a series of percentage values (0% to 100%) or keywords (from and to) to represent the start and end states of the animation @keyframes slide { 0% { opacity: 0; } 50% { Example opacity: 0.5; } 100% { opacity: 1; } } BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 19 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Declaring Multiple Animations:  The animation property allows you to declare multiple animations on a single element. 3.  Simply separate the animation names with commas.  Each animation can have its own duration, timing function, delay, iteration count, direction, fill mode, and play state.element { Example animation: slide 2s ease-in-out, rotate 1.5s linear; } 4. Wrap-up:  CSS animations provide a powerful and flexible way to create dynamic and engaging visual effects on websites and web applications.  They allow you to bring elements to life by animating properties and transitioning between states.  Keyframes define the intermediate steps of an animation, and the animation property brings them together, controlling the animation's timing, duration, and behavior.  By combining multiple animations and adjusting various animation properties, you can achieve more complex and intricate animations. All about CSS Transitions  CSS transitions allow you to create smooth and gradual changes in CSS property values over a specified duration.  They provide a way to add animation-like effects to elements when certain properties are modified Transition Property: 1.  The transition property is used to specify the CSS properties that should undergo a transition effect syntax transition: property duration timing-function delay; Specifies one or more CSS properties to transition. You can use shorthand properties like property all, background-color, transform, etc., or specify multiple properties separated by commas. duration Sets the duration of the transition effect in seconds (s) or milliseconds (ms). timing- Defines the timing function that controls the acceleration and deceleration of the transition. function Common values include ease, linear, ease-in, ease-out, and ease-in-out. Specifies a delay before the transition effect starts, which can also be specified in seconds Delay (s) or milliseconds (ms). BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 20 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Transition Timing: 2.  The timing-function property within transitions determines the speed curve of the transition. syntax transition: property duration timing-function delay; Ease Starts slow, accelerates in the middle, and slows down at the end (default). Linear Progresses at a constant speed. ease-in Starts slow and accelerates. ease-out Starts fast and decelerates. ease-in-out Starts slow, accelerates in the middle, and decelerates at the end. Adding a Transition  Adding a transition to an element involves specifying the transition property and values in CSS. Here's an example of adding a transition to change the background color of a button when it's hovered over: HTML: CSS:.box { width: 100px; height: 100px; background-color: blue; transition: background-color 1s; }.box:hover { background-color: red; } 1. We have a element with the class "box". 2. In CSS, we set the initial background color of the button to blue, along with other styles like text color and padding. 3. The transition property is applied to the box, specifying that the background-color property should transition with a duration of 1s seconds and an easing function of ease. 4. When the button is hovered over (using the :hover pseudo-class), the background color is changed to red. 5. When you view the HTML file with the provided CSS, you'll see that the button smoothly transitions from blue to red when hovered over. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 21 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Transition longhand:  The option to use longhand properties to individually control different aspects of the transition..element { Transition-property : color; Transition-delay : 500ms; Example Transition-duration : 2s; Transition-time-function : ease-in; } Transition Shorthand:  Shorthand properties provide a concise way to define multiple aspects of the transition in a single declaration..element { Example Transition: color 2s ease-in 500ms } Longhand Properties vs. Shorthand Properties Longhand Properties: Shorthand Properties:  Longhand properties allow you to  Shorthand properties combine multiple individually control specific aspects of the transition-related properties into a single transition, such as the transition property, declaration. duration, timing function, and delay.  Simplify the code by condensing multiple  Each property is declared separately using properties into one. its respective CSS property name.  Provide a more concise and readable way to  Provides more fine-grained control over the define transitions. transition effects.  Useful when you want to apply the same  Offers flexibility to specify different values values to multiple properties simultaneously. for each property..element {.element { transition-property: width; transition: width 1s ease-in-out 0.3s; transition-duration: 1s; } transition-timing-function: ease-in-out; transition-delay: 0.3s; } Longhand properties offer more control and Shorthand properties are handy when you want flexibility when you need different values for to apply the same transition settings to multiple each aspect of the transition effect. properties, making the code shorter and more readable. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 22 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Working with Multiple Transitions.  apply different transition effects to individual CSS properties or groups of properties Applying Different Transitions to Individual Properties:  Use the transition or longhand properties on separate lines to define different 1. transitions for different properties.  Each line specifies the transition effect for a specific CSS property..element { transition: width 1s ease-in-out; Example transition-property: height; transition-duration: 0.5s; } Grouping Multiple Properties in a Single Transition:  If multiple properties should have the same transition effect, you can group them 2. together within a single transition or longhand declaration.  Separate the property names with commas to define the grouped properties.element { Example transition: width 1s ease-in-out, height 0.5s linear; } Transitioning All Properties: 3.  To apply the same transition effect to all eligible properties, you can use the all keyword in the transition or transition-property declaration..element { Example transition: all 1s ease-in-out; } BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 23 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation UNIT 3 HTML5-SVG HTML5 – SVG: Viewing SVG Files, Embedding SVG in HTML5, HTML5 − SVG Circle, HTML5 − SVG Rectangle, HTML5 − SVG Line, HTML5 − SVG Ellipse, HTML5 − SVG Polygon, HTML5 − SVG Polyline, HTML5 − SVG Gradients, HTML5 − SVG Star. HTML5 SVG  SVG(Scalable Vector Graphics) is a markup language used to create vector-based graphics and animations on the web.  It allows for the creation of scalable and resolution-independent images that can be manipulated and animated using JavaScript or CSS.  SVG is supported by all modern web browsers and provides a wide range of features and elements to create visually appealing and interactive graphics Key features of HTML5 SVG include: Sl.No Feature Definition Basic Shapes: SVG provides elements such as , , , 1 Basic Shapes , , and to create basic shapes on the canvas. SVG allows you to create complex shapes using path commands like 2 Paths element, which supports various commands like M (move to), L (line to), C (cubic Bezier curve), Q (quadratic Bezier curve), and more. SVG supports the element to display text within the graphic, 3 Text allowing you to control the font, size, alignment, and other text-related properties. SVG provides transformations like translation, rotation, scaling, and 4 Transformations skewing through attributes like transform, allowing you to manipulate and animate elements in the SVG canvas. SVG supports linear and radial gradients using the and 5 Gradients elements, allowing you to create smooth color transitions across shapes and objects. SVG offers a variety of filters and effects to apply to shapes and images, Filters and 6 such as blurring, drop shadows, color adjustments, and more, using the Effects element. SVG supports animation and interactivity through CSS animations, JavaScript, and the element. You can animate properties like 7 Animation position, size, color, opacity, and more to create dynamic and engaging visuals. SVG can be seamlessly integrated with HTML5 elements and other Integration with technologies. You can embed SVG directly within an HTML document 8 HTML5 using the element or include it as an external file using the or element. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 24 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Viewing SVG Files  To view SVG files, you have a few options:  Most modern web browsers, such as Google Chrome, Mozilla Firefox, Safari, and Microsoft Edge, have built-in support for rendering SVG files. 1 Web Browsers  You can simply open an SVG file in your web browser by selecting "File" > "Open File" or by dragging and dropping the SVG file into the browser window.  There are various online tools and websites that allow you to upload and view SVG files directly in your browser. Online SVG 2  Some popular options include SVG Viewer by SVG-Edit (https://svg- Viewers edit.github.io/svgedit/dist/svg-editor.html) and SVG Viewer by Codepen (https://codepen.io/SVGViewer/details/bdVXbO).  SVG files can be opened and viewed using dedicated SVG editing software.  Some popular options include Adobe Illustrator, Inkscape, Sketch, and SVG Editing 3 CorelDRAW. Software  These tools not only allow you to view SVG files but also provide advanced editing capabilities for modifying and creating SVG graphics.  Since SVG files are XML-based, you can open them in any text editor, such as Notepad, Sublime Text, Visual Studio Code, or Atom. 4 Text Editors  While this option doesn't provide a visual representation of the SVG, it allows you to inspect and modify the code directly. Embedding SVG in HTML5  To embed an SVG (Scalable Vector Graphics) file in an HTML5 document, you can use the element. Here's an example of how to embed an SVG file directly within an HTML document: Embedding SVG in HTML5 Embedded SVG Example BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 25 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation In the above example: 1. The element is used to define a container for the SVG content. 2. The width and height attributes specify the dimensions of the SVG canvas. 3. The element is used to embed the SVG file. The xlink:href attribute specifies the path to the SVG file. Adjust the width and height attributes of the element to match the desired dimensions of the SVG image within the container. Make sure to replace "image.svg" with the actual path to your SVG file. Save this code to an HTML file and open it in a web browser. The SVG image specified in the element will be displayed within the SVG container with the specified dimensions. 1. HTML5− SVG CIRCLE  To create an SVG circle in HTML5, you can use the element. Example SVG Circle The element creates the SVG container with a width and height of 400 pixels. The element represents the circle shape. cx The cx attribute defines the x-coordinate of the center of the circle (200 in this case). cy The cy attribute defines the y-coordinate of the center of the circle (200 in this case). r The r attribute specifies the radius of the circle (100 in this case). fill The fill attribute sets the fill color of the circle (red in this case). BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 26 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 2. HTML5 − SVG Rectangle  To create an SVG rectangle in HTML5, you can use the element. Example SVG Rectangle The element creates the SVG container with a width and height of 400 pixels. The element represents the rectangle shape. x The x attribute defines the x-coordinate of the top-left corner of the rectangle (50 in this case). y The y attribute defines the y-coordinate of the top-left corner of the rectangle (100 in this case). width The width attribute specifies the width of the rectangle (300 in this case). height The height attribute specifies the height of the rectangle (200 in this case). fill The fill attribute sets the fill color of the rectangle (blue in this case). 3. HTML5 − SVG Line  To create an SVG line in HTML5, you can use the element. Example SVG Line The element creates the SVG container with a width and height of 400 pixels. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 27 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation The element represents the line shape. x1 The x1 attribute defines the x-coordinate of the starting point of the line (50 in this case). y1 The y1 attribute defines the y-coordinate of the starting point of the line (100 in this case). x2 The x2 attribute defines the x-coordinate of the ending point of the line (350 in this case). y2 The y2 attribute defines the y-coordinate of the ending point of the line (300 in this case). stroke The stroke attribute sets the color of the line (green in this case). stroke- The stroke-width attribute specifies the thickness of the line (2 in this case). width 4. HTML5 − SVG Ellipse  To create an SVG ellipse in HTML5, you can use the element. Example SVG Ellipse The element creates the SVG container with a width and height of 400 pixels. The element represents the ellipse shape. cx The cx attribute defines the x-coordinate of the center of the ellipse (200 in this case). cy The cy attribute defines the y-coordinate of the center of the ellipse (200 in this case). rx The rx attribute specifies the horizontal radius of the ellipse (150 in this case). ry The ry attribute specifies the vertical radius of the ellipse (100 in this case). fill The fill attribute sets the fill color of the ellipse (yellow in this case). BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 28 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 5. HTML5− SVG Polygon  To create an SVG polygon in HTML5, you can use the element. Example SVG Polygon The element creates the SVG container with a width and height of 400 pixels. The element represents the polygon shape. points The points attribute defines the coordinates of the vertices of the polygon. In this case, the polygon has four vertices: (200, 50), (350, 200), (200, 350), and (50, 200). The coordinates are specified in pairs separated by spaces. fill The fill attribute sets the fill color of the ellipse (orange in this case). 6.HTML5− Polyline  To create an SVG polyline in HTML5, you can use the element. Example SVG Polyline The element creates the SVG container with a width and height of 400 pixels. The element represents the polyline shape. points The points attribute defines the coordinates of the vertices of the polyline. In this case, the polyline has four vertices: (100, 200), (200, 50), (300, 200), and (200, 350). The coordinates are specified in pairs separated by spaces. fill The fill="none" attribute specifies that the polyline should have no fill color. stroke The stroke="purple" attribute sets the stroke color of the polyline (purple in this case). stroke- The stroke-width="2" attribute specifies the thickness of the polyline (2 in this case). width BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 29 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 6. HTML5 − SVG Gradients To create SVG gradients in HTML5, you can use the and elements. Example SVG Gradients The element creates the SVG container with a width of 400 pixels and a height of 200 pixels. The element is used to define the gradients. The element with id="grad1" defines a linear gradient that starts with a yellow color at the left (x1="0%" y1="0%") and ends with a red color at the right (x2="100%" y2="0%"). Inside the , there are two elements that define the color stops of the gradient. The offset attribute specifies the position along the gradient, and the style attribute sets the color and opacity. The element with id="grad2" defines a radial gradient that starts with a white color at the center (cx="50%" cy="50%") and ends with a blue color at the edges (fx="50%" fy="50%"). Inside the element, a and a are created. The fill attribute of each shape is set to "url(#grad1)" and "url(#grad2)", respectively, to apply the gradients. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 30 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 7. HTML5 − SVG Star  To create an SVG star in HTML5, you can use the element. Example SVG Star The element creates the SVG container with a width of 400 pixels and a height of 200 pixels. The element represents the star shape. The points attribute defines the coordinates of the vertices of the star. In this case, the points star has five vertices: (200, 10), (250, 190), (60, 70), (340, 70), and (150, 190). The coordinates are specified in pairs separated by spaces. fill The fill attribute sets the fill color of the star (gold in this case). BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 31 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation UNIT 4 HTML5 – CANVAS HTML5 – CANVAS: The Rendering Context, Browser Support, HTML5 Canvas Examples, Canvas - Drawing Rectangles, Canvas - Drawing Paths, Canvas - Drawing Lines, Canvas - Drawing Bezier Curves, Canvas - Drawing Quadratic Curves, Canvas - Using Images, Canvas - Create Gradients. HTML5 – CANVAS  HTML5 Canvas is a powerful feature introduced in HTML5 that allows you to dynamically render graphics, animations, and images directly in a web page using JavaScript.  With the Canvas API, you have full control over individual pixels and can create complex visualizations, games, data visualizations, and more.  To use the HTML5 Canvas, you need to add a element to your HTML markup.  This element acts as a drawing surface and can be styled using CSS. Example: Canvas Example #myCanvas { border: 1px solid black; } // JavaScript code to draw on the canvas goes here  We have created a canvas element with an id of "myCanvas" and specified its width and height as 500 pixels.  We have also added a simple border using CSS.  To draw on the canvas, you need to access the canvas element using JavaScript and obtain its 2D rendering context. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 32 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Example that draws a blue rectangle on the canvas: var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); ctx.fillStyle = 'blue'; ctx.fillRect(50, 50, 100, 100); The Rendering Context  The rendering context in HTML5 Canvas is an object that provides methods and properties for drawing and manipulating graphics on the canvas.  The rendering context is obtained using the getContext method of the canvas element, and it determines the type of graphics that can be rendered on the canvas. There are two main types of rendering contexts: 1. 2D Rendering Context:  The 2D rendering context, accessed by using the string '2d' as the argument to get Context, provides methods for drawing and manipulating 2D graphics.  This is the most commonly used rendering context in HTML5 Canvas. Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); 2. WebGL Rendering Context:  The WebGL rendering context, accessed by using the string 'webgl' or 'experimental-webgl' as the argument to getContext, provides a 3D graphics rendering API based on OpenGL ES.  WebGL allows you to create interactive 3D graphics and games directly in the browser using JavaScript. Example var canvas = document.getElementById('myCanvas'); var gl = canvas.getContext('webgl'); NOTE  The WebGL rendering context exposes a low-level API for working with shaders, buffers, textures, and other WebGL-specific concepts.  It requires a good understanding of computer graphics and shader programming to use effectively.  Each rendering context has its own set of methods and properties that are specific to its capabilities. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 33 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation BROWSER SUPPORT  HTML5 Canvas has excellent browser support and is widely supported across modern web browsers.  It is supported in major desktop browsers, mobile browsers, and even in some older versions of browsers.  Here is an overview of the browser support for HTML5 Canvas as of my knowledge cutoff in September 2021: 1. Chrome: Full support in all versions. 2. Firefox: Full support in all versions. 3. Safari: Full support in all versions. 4. Edge: Full support in all versions. 5. Opera: Full support in all versions. 6. Internet Explorer: Partial support starting from Internet Explorer 9. However, older versions of Internet Explorer (8 and below) do not support Canvas. HTML5 Canvas Examples 1. Drawing Shapes 2. Creating Animations 3. Image Manipulation 4. Interactive Drawing 1. Drawing Shapes:  Canvas to draw various shapes such as rectangles, circles, lines, and polygons.  Here's an example of drawing a rectangle and a circle: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); // Draw a rectangle ctx.fillStyle = 'blue'; ctx.fillRect(50, 50, 100, 100); // Draw a circle ctx.beginPath(); ctx.arc(200, 200, 50, 0, 2 * Math.PI); ctx.fillStyle = 'red'; ctx.fill(); ctx.closePath(); BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 34 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 2. Creating Animations:  HTML5 Canvas is great for creating animations.  By redrawing the canvas at regular intervals, you can create dynamic and interactive animations.  Here's an example of a bouncing ball animation: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); var x = canvas.width / 2; var y = canvas.height / 2; var dx = 2; var dy = -2; var ballRadius = 20; function drawBall() { ctx.clearRect(0, 0, canvas.width, canvas.height); ctx.beginPath(); ctx.arc(x, y, ballRadius, 0, 2 * Math.PI); ctx.fillStyle = 'blue'; ctx.fill(); ctx.closePath(); x += dx; y += dy; requestAnimationFrame(drawBall); } drawBall(); 3. Image Manipulation:  load and manipulate images on the Canvas.  Here's an example of how to draw an image on the Canvas: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); var img = new Image(); img.src = 'image.jpg'; img.onload = function() { ctx.drawImage(img, 0, 0); }; BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 35 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 3. Interactive Drawing:  Allow users to draw on the Canvas using mouse or touch events.  Here's an example of a simple interactive drawing application: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); var isDrawing = false; canvas.addEventListener('mousedown', startDrawing); canvas.addEventListener('mousemove', draw); canvas.addEventListener('mouseup', stopDrawing); canvas.addEventListener('mouseout', stopDrawing); function startDrawing(e) { isDrawing = true; ctx.beginPath(); ctx.moveTo(e.clientX, e.clientY); } function draw(e) { if (!isDrawing) return; ctx.lineTo(e.clientX, e.clientY); ctx.stroke(); } function stopDrawing() { isDrawing = false; } 1. Canvas - Drawing Rectangles  Drawing rectangles on the HTML5 Canvas is a common task.  You can use the fillRect and strokeRect methods of the 2D rendering context to draw filled or outlined rectangles, respectively.  Here's an example that demonstrates drawing rectangles on the canvas Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); // Drawing a filled rectangle ctx.fillStyle = 'blue'; ctx.fillRect(50, 50, 200, 100); // Drawing an outlined rectangle ctx.strokeStyle = 'red'; ctx.lineWidth = 2; ctx.strokeRect(100, 150, 150, 80); BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 36 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Canvas - Drawing Rectangles (above code) 1. We first obtain the 2D rendering context from the canvas element. 2. We set the fill style using the fillStyle property to specify the color of the filled rectangle (blue in this case). 3. Then we call the fillRect method, providing the position (x, y) and dimensions (width, height) of the rectangle. 4. Next, we set the stroke style using the strokeStyle property to specify the color of the outline (red in this case). 5. We can also set the line width using the lineWidth property to control the thickness of the outline. 6. Finally, we call the strokeRect method, providing the position and dimensions of the outlined rectangle. 7. You can customize the position, size, colors, and other properties of the rectangles to achieve the desired effect. 8. By using these methods along with other drawing and styling functions, you can create complex shapes and visual elements on the canvas. 2. Canvas - Drawing Paths  Drawing paths on the HTML5 Canvas allows you to create custom shapes and lines by defining a series of points and connecting them with lines or curves.  The Canvas API provides methods like beginPath, moveTo, lineTo, arc, and bezierCurveTo to create paths.  Here's an example that demonstrates drawing paths on the canvas: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); // Drawing a triangle ctx.beginPath(); ctx.moveTo(100, 100); // Starting point ctx.lineTo(200, 100); // Line to point (200, 100) ctx.lineTo(150, 200); // Line to point (150, 200) ctx.closePath(); // Connects the last point to the starting point ctx.fillStyle = 'blue'; ctx.fill(); // Drawing a circle ctx.beginPath(); ctx.arc(300, 150, 50, 0, 2 * Math.PI); // Circle centered at (300, 150) with radius 50 ctx.fillStyle = 'red'; ctx.fill(); // Drawing a curved path ctx.beginPath(); ctx.moveTo(400, 100); // Starting point BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 37 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation ctx.quadraticCurveTo(450, 200, 500, 100); // Quadratic curve from (450, 200) to (500, 100) ctx.strokeStyle = 'green'; ctx.lineWidth = 3; ctx.stroke(); Canvas - Drawing Paths (above code) 1. We first obtain the 2D rendering context from the canvas element. 2. Then, we use the beginPath method to start a new path. 3. We can then define the path by calling different methods: 4. moveTo sets the starting point of the path. 5. lineTo connects the current point to the specified point with a straight line. 6. arc creates an arc or circle. 7. bezierCurveTo creates a curve using cubic Bezier control points. 8. quadraticCurveTo creates a curve using quadratic Bezier control points. 9. After defining the path, we can style and render it using fill or stroke operations. fill fills the path with a specified color, while stroke outlines the path. 10. You can set the fill and stroke styles using the fillStyle and strokeStyle properties. 11. Remember to use beginPath before starting a new path to ensure that the previous path is not connected to the new one unintentionally. 12. By combining different path creation methods, you can create complex shapes, curves, and lines on the canvas. 4. Canvas - Drawing Lines  Drawing lines on the HTML5 Canvas is straightforward using the moveTo and lineTo methods of the 2D rendering context.  These methods allow you to specify the starting point and subsequent points to draw a connected line.  Here's an example that demonstrates drawing lines on the canvas: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); // Drawing a straight line ctx.beginPath(); ctx.moveTo(50, 50); // Starting point ctx.lineTo(200, 50); // Line to point (200, 50) ctx.strokeStyle = 'blue'; ctx.lineWidth = 2; ctx.stroke(); // Drawing a diagonal line ctx.beginPath(); ctx.moveTo(50, 100); // Starting point ctx.lineTo(200, 200); // Line to point (200, 200) ctx.strokeStyle = 'red'; BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 38 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation ctx.lineWidth = 3; ctx.stroke(); Canvas - Drawing Lines (above code) 1. We first obtain the 2D rendering context from the canvas element. 2. Then, for each line we want to draw, we start a new path using beginPath. 3. We set the starting point of the line using moveTo, specifying the initial coordinates. 4. We then use lineTo to draw a line from the starting point to the desired end point. 5. After defining the line, we can set the stroke style using the strokeStyle property to specify the color of the line. 6. The lineWidth property allows us to set the thickness of the line. 7. Finally, we call stroke to render the line on the canvas. 8. You can repeat these steps to draw multiple lines with different positions, colors, and thicknesses. 9. Remember to call beginPath before starting a new line to ensure that the previous line is not connected to the new one unintentionally. 10. By combining the moveTo and lineTo methods, you can create complex line patterns, shapes, and even curves on the canvas. 5. Canvas - Drawing Bezier Curves  Drawing Bezier curves on the HTML5 Canvas allows you to create smooth and curved paths.  The Canvas API provides methods such as quadraticCurveTo and bezierCurveTo to define and render Bezier curves.  Here's an example that demonstrates drawing Bezier curves on the canvas: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); // Drawing a quadratic Bezier curve ctx.beginPath(); ctx.moveTo(50, 150); // Starting point ctx.quadraticCurveTo(100, 50, 200, 150); // Control point (100, 50) and end point (200, 150) ctx.strokeStyle = 'blue'; ctx.lineWidth = 2; ctx.stroke(); // Drawing a cubic Bezier curve ctx.beginPath(); ctx.moveTo(250, 150); // Starting point ctx.bezierCurveTo(300, 50, 400, 250, 450, 150); // Control points (300, 50) and (400, 250), and end point (450, 150) ctx.strokeStyle = 'red'; ctx.lineWidth = 2; ctx.stroke(); BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 39 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Canvas - Drawing Bezier Curves (above code) 1. we first obtain the 2D rendering context from the canvas element. 2. Then, for each Bezier curve we want to draw, we start a new path using beginPath. 3. We set the starting point of the curve using moveTo, specifying the initial coordinates. 4. For quadratic Bezier curves, we use quadraticCurveTo to define the curve. 5. It takes two arguments: the control point's coordinates and the end point's coordinates. 6. The control point influences the shape of the curve. 7. For cubic Bezier curves, we use bezierCurveTo to define the curve. 8. It takes three arguments: two control points' coordinates and the end point's coordinates. 9. The control points allow for more control over the shape of the curve. 10. After defining the curve, we can set the stroke style using the strokeStyle property to specify the color of the curve. 11. The lineWidth property allows us to set the thickness of the curve. Finally, we call stroke to render the curve on the canvas. 12. You can experiment with different control point and end point coordinates to create a variety of curved shapes and lines on the canvas. 13. Remember to call beginPath before starting a new curve to ensure that the previous curve is not connected to the new one unintentionally. 14. By using Bezier curves, you can achieve smooth and complex curves for creating illustrations, animations, or other graphical elements on the canvas. 6. Canvas - Drawing Quadratic Curves  Drawing quadratic curves on the HTML5 Canvas allows you to create smooth and curved paths using control points.  The Canvas API provides the quadraticCurveTo method to define and render quadratic curves.  Here's an example that demonstrates drawing quadratic curves on the canvas: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); // Drawing a quadratic curve ctx.beginPath(); ctx.moveTo(50, 150); // Starting point ctx.quadraticCurveTo(100, 50, 200, 150); // Control point (100, 50) and end point (200, 150) ctx.strokeStyle = 'blue'; ctx.lineWidth = 2; ctx.stroke(); Canvas - Drawing Quadratic Curves(above code) 1. We first obtain the 2D rendering context from the canvas element. 2. Then, we start a new path using beginPath. 3. We set the starting point of the curve using moveTo, specifying the initial coordinates. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 40 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 4. To define the quadratic curve, we use quadraticCurveTo method, which takes two arguments: the control point's coordinates and the end point's coordinates. 5. The control point influences the shape and direction of the curve. 6. After defining the curve, we can set the stroke style using the strokeStyle property to specify the color of the curve. 7. The lineWidth property allows us to set the thickness of the curve. 8. Finally, we call stroke to render the curve on the canvas. 9. You can experiment with different control point and end point coordinates to create various quadratic curves and shapes on the canvas. 10. Remember to call beginPath before starting a new curve to ensure that the previous curve is not connected to the new one unintentionally. 11. By utilizing quadratic curves, you can achieve smooth and rounded shapes, lines, and animations on the canvas. 7. Canvas - Using Images  Using images on the HTML5 Canvas allows you to display and manipulate image content within your canvas-based applications.  The Canvas API provides the drawImage method to load and draw images onto the canvas.  Here's an example that demonstrates how to use images on the canvas: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); var img = new Image(); img.src = 'image.jpg'; img.onload = function() { ctx.drawImage(img, 0, 0); }; Canvas - Using Images (above code) 1. We first obtain the 2D rendering context from the canvas element. 2. We then create a new Image object and assign it the source URL of the image file using the src property. 3. Make sure to replace 'image.jpg' with the actual path to your image file. 4. We set up an onload event handler for the image, which ensures that the image is fully loaded before attempting to draw it on the canvas. 5. Inside the onload function, we use the drawImage method to draw the image onto the canvas. 6. The first argument is the image object, and the second and third arguments specify the starting position (x, y) on the canvas where the image should be drawn. 7. You can customize the position, size, and other properties of the drawn image by providing additional arguments to the drawImage method. 8. For example, you can specify the destination width and height to scale the image, or use the source and destination rectangles to crop and resize the image. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 41 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 9. Remember that the image must be hosted on the same domain as the web page to avoid security restrictions due to cross-origin resource sharing (CORS). 10. By incorporating image loading and drawing into your canvas applications, you can create dynamic visualizations, games, and interactive experiences that incorporate image assets. 8. Canvas - Create Gradients  Creating gradients on the HTML5 Canvas allows you to fill shapes and regions with smooth color transitions.  The Canvas API provides two types of gradients: linear gradients and radial gradients.  You can use the createLinearGradient and createRadialGradient methods of the 2D rendering context to create gradients, and then use them to fill shapes using the fill method.  Here's an example that demonstrates creating and using gradients on the canvas: Example var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); // Creating a linear gradient var linearGradient = ctx.createLinearGradient(0, 0, canvas.width, 0); linearGradient.addColorStop(0, 'red'); linearGradient.addColorStop(0.5, 'green'); linearGradient.addColorStop(1, 'blue'); // Drawing a rectangle filled with the linear gradient ctx.fillStyle = linearGradient; ctx.fillRect(50, 50, 200, 100); // Creating a radial gradient var radialGradient = ctx.createRadialGradient(300, 200, 50, 300, 200, 150); radialGradient.addColorStop(0, 'yellow'); radialGradient.addColorStop(1, 'orange'); // Drawing a circle filled with the radial gradient ctx.fillStyle = radialGradient; ctx.beginPath(); ctx.arc(300, 200, 150, 0, 2 * Math.PI); ctx.fill(); Canvas - Using Images (above code) 1. We first obtain the 2D rendering context from the canvas element. 2. Then, we create a linear gradient using the createLinearGradient method, specifying the starting and ending points of the gradient as (x0, y0, x1, y1). 3. We then use the addColorStop method to define color stops along the gradient. 4. Each color stop consists of a position (ranging from 0 to 1) and a color. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 42 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 5. After creating the gradient, we set the fillStyle property of the context to the gradient and draw a rectangle using the fillRect method. 6. The rectangle will be filled with the linear gradient. 7. Next, we create a radial gradient using the createRadialGradient method, specifying the center and radius of the inner and outer circles of the gradient. 8. Again, we use addColorStop to define color stops along the gradient. 9. Finally, we set the fillStyle property to the radial gradient and draw a circle using the arc and fill methods. 10. The circle will be filled with the radial gradient. 11. You can customize the positions, colors, and number of color stops to create various gradient effects on the canvas. 12. By leveraging gradients, you can enhance the visual appeal of your canvas-based applications and create smooth color transitions in your drawings and shapes. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 43 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation UNIT 5 HTML5 - STYLES AND COLORS HTML5 - Styles and Colors, Canvas - Text and Fonts, Canvas - Pattern and Shadow, Canvas - Save and Restore States, Canvas - Translation, Canvas - Rotation, Canvas - Scaling, Canvas - Transforms, HTML5 Canvas - Composition, Canvas – Animations.. HTML5 - Styles and Colors  Styles and colors to elements using CSS (Cascading Style Sheets).  CSS provides a wide range of options for customizing the appearance of HTML elements. Styles and colors in HTML5: Sl.No Styles and colors Example You can apply styles directly to an HTML element using the style attribute. 1 Inline Styles For example: Hello, World! You can define styles within the tags in the section of your HTML document. For example: h1 { color: red; 2 Internal Stylesheets font-size: 24px; } Welcome! You can also define styles in an external CSS file and link it to your HTML document using the tag. For example: 3 External Stylesheets Welcome! BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 44 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation CSS provides various ways to specify colors, including named colors, hexadecimal values, RGB values, and HSL values. For example: h1 { color: red; 4 Color background-color: #00ff00; border-color: rgb(255, 0, 0); box-shadow: hsl(240, 100%, 50%) 2px 2px 2px; } 1. Canvas - Text and Fonts  In HTML5 Canvas, you can draw text on the canvas and customize the font properties.  You can use the fillText() or strokeText() methods to render text, and the font property to control the font style.  Here's an example of drawing text on a canvas: Example // Get the canvas element var canvas = document.getElementById("myCanvas"); var ctx = canvas.getContext("2d"); // Set the font properties ctx.font = "24px Arial"; ctx.fillStyle = "red"; ctx.textAlign = "center"; // Draw filled text ctx.fillText("Hello, World!", canvas.width/2, canvas.height/2); // Draw stroked text ctx.strokeStyle = "blue"; ctx.lineWidth = 2; ctx.strokeText("Hello, World!", canvas.width/2, canvas.height/2 + 50); In the example above: 1. We obtain a reference to the canvas element and its 2D rendering context. 2. We set the font property to specify the font size and family. 3. In this case, the font size is set to 24 pixels and the font family is set to Arial. 4. We set the fillStyle property to determine the color of the filled text. 5. We set the textAlign property to specify the alignment of the text. 6. In this case, it is set to "center" to center the text horizontally. BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 45 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation 7. We use the fillText() method to draw filled text on the canvas. 8. It takes the text to be drawn, followed by the x and y coordinates of the baseline position. 9. We set the strokeStyle property to determine the color of the text outline when using strokeText(). 10. We set the lineWidth property to specify the thickness of the text outline. 11. We use the strokeText() method to draw the outlined text on the canvas, using the same parameters as fillText(). 2. Canvas - Pattern  Patterns in Canvas allow you to fill shapes with repeating images or custom patterns.  You can create a pattern using the createPattern() method, which takes an image or another canvas as the pattern source.  Here's an example: Example // Get the canvas element var canvas = document.getElementById("myCanvas"); var ctx = canvas.getContext("2d"); // Create a pattern from an image var img = new Image(); img.src = "pattern-image.png"; img.onload = function() { var pattern = ctx.createPattern(img, "repeat"); ctx.fillStyle = pattern; ctx.fillRect(0, 0, canvas.width, canvas.height); }; In the above example: 1. We obtain a reference to the canvas element and its 2D rendering context. 2. We create an Image object and set its source to the pattern image file. 3. After the image is loaded, we use the createPattern() method to create a pattern from the image. 4. The second argument specifies how the pattern should repeat. 5. Options include "repeat" (default), "repeat-x", "repeat-y", or "no-repeat". 6. We set the fillStyle to the created pattern. 7. Finally, we draw a rectangle that fills the entire canvas using fillRect(). 3. Canvas Shadows:  Shadows in Canvas allow you to add a visual shadow effect to your drawings.  You can set the shadow properties using the shadowOffsetX, shadowOffsetY, shadowBlur, and shadowColor properties.  Here's an example: BCA DEPARTMENT 4th SEM ~Mr. SAYED FAIZAL Page 46 of 50 KRUPANIDHI DEGREE COLLEGE Computer Multimedia and Animation Example // Get the canvas element var canvas = document.getElementById("myCanvas"); var ctx = canvas.getContext("2d"); // Set shadow properties ctx.shadowOffsetX = 4; ctx.shadowOffsetY = 4; ctx.shadowBlur = 6; ctx.shadowColor = "rgba(0, 0, 0, 0.5)"; // Draw a rectangle with a shadow ctx.fillStyle = "red"; ctx.fillRect(50, 50, 200, 100); In the above example: 1. We obtain a reference to the canvas element and its 2D rendering context. 2. We set the shadowOffsetX and shadowOffsetY properties to define the horizontal and vertical offsets of the shadow from the object. 3. We set the shadowBlur property to specify the blurriness of the shadow. 4. We set the shadowColor property to determine the color and transparency of the shadow. 5. Finally, we draw a

Use Quizgecko on...
Browser
Browser