Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Web Development Articles
Page 790 of 801
Which is better for thumbnails – Canva or Picmaker?
Set out to create your brand new YouTube channel? Want to create a good first impression?A thumbnail is the first impression that your video makes on the web its important you choose a graphic designer tool. But with so many options available, which is the most convenient tool to use? Canva and Picmaker are arguably two of the most appealing and emerging giants in the world of graphic design. So when designing a thumbnail, which platform to opt for? Here is a little something which would help you decide.What is Canva?Canva is a free graphics design platform which aids in ...
Read MoreSmart ways to use Canva for Social Media
Starting out new on Canva and completely overwhelmed? When first starting out, Canva can be a tricky place to find your way through. The wide assortment of features which makes designing very easy may also sometimes lead to confusion if you are not well-versed with the platform. This may keep users from discovering the multiple smart and underrated uses of these features.Smart and unique ways to use Canva for Social MediaIn this article, we will see how you can use Canva and its features to promote a brand in smart and unique ways on Social Media platforms.Branding ImagesIf the images ...
Read MoreResponsive Video or Slideshow Embeds in Bootstrap with Examples
Bootstrap is a free open source and is one of the most famous HTML, CSS, and Javascript frameworks. It's used for user interfaces and themes that create what a user sees in a website or application, and it's utilized on the client rather than the server.Responsive web applications automatically adapt to various screen sizes. It is used to create responsive mobile-first web apps and websites; mobile-first refers to designing for smaller displays first and then scaling up to bigger ones. As a result, you won't have to worry about your app not working on different devices or with different screen ...
Read Moreangularjs – ng-class Directive
The ng-class Directive in angularjs allows the user to dynamically set the CSS classes on an HTML element by databinding an expression which will further represent all those classes to be added. The class is only added if the expression inside the ngClass Directive returns True, else it will not be added. It is supported by all the HTML elements.The directive does not set any duplicate class if it was already set. When the expression changes, the previously added classes will be removed and the new classes will be added only after that.Syntax..Content..Example − ngClass DirectiveCreate a file "ngClass.html" in ...
Read MoreAngularJS – ng-mousedown Directive
The ng-mousedown Directive in AngularJS basically specifies a custom event on mouse-down event. We can perform multiple functions whenever the mouse is pressed and the mouse-down event is called.Syntax..content..Example − ngMousedown DirectiveCreate a file "ngMousedown.html" in your Angular project directory and copy-paste the following code snippet. ngMousedown Directive Welcome to Tutorials Point angularjs | ngMousedown Directive Click mouse and hold !!! OutputTo run the above code, just go to your file and run it as a normal HTML file.Your browser does not support HTML5 video.
Read MoreAngularJS – angular.element() function
The angular.element() method wraps the raw DOM element or the HTML string as a jQuery element. If jQuery is available or imported, angular.element is an alias for the jQuery function, else this method delegates to AngularJS’s built-in subset of jQuery called jQueryLite or jqLite.Syntaxangular.element(element)Example − Wrapping the DOM element using angular.element()Create a file "element.html" in your Angular project directory and copy-paste the following code snippet. angular.element() Welcome to Tutorials Point ...
Read MoreAngularJS – ng-copy Directive
The ng-copy Directive in AngularJS is used for specifying any custom behaviour while copying the texts in input text fields. We can use this directive to call certain methods that will be triggered while the text is copied from the input field. This directive is supported by all types of input elements.Syntax..content..Example − ngCopy DirectiveCreate a file "ngCopy.html" in your Angular project directory and copy-paste the following code snippet. ngCopy Directive .index {color: white; background-color: green;} ...
Read MoreAngularJS – equals() method
The equals() method in AngularJS basically checks if two objects or two values are equal or not. This method supports value types, regular expressions, arrays, and objects. It will return True if the reference objects passed inside the function are equal, else it will return False.Syntaxangular.equals(value1, value2)Example − Check if the reference objects are equal or notCreate a file "equals.html" in your Angular project directory and copy-paste the following code snippet. angular.equals() Welcome to Tutorials Points ...
Read MoreAngularJS – ngMaxlength Directive
The ngMaxlength Directive in AngularJS adds the maxlength validator to the ngModel. This directive is mostly used to control the text-based inputs but can also be applied for controlling the custom text-based controls.This validator sets the maxlength error key if the value ngModel.$viewValue is longer than the integer value obtained by evaluating the Angular JS expression defined in the ngMaxlength attribute value.Syntax..content..Example − ngMaxlength DirectiveCreate a file "ngMaxlength.html" in your Angular project directory and copy-paste the following code snippet. ngMaxlength Directive ...
Read MoreAngularJS – ng-style Directive
The ng-style Directive in AngularJS helps you to set the CSS style of an HTML element conditionally. If the condition evaluates to True, the style will be applied. The expression inside the ng-style directive must be an object. This is supported by all the HTML elements.Syntax..content..Example − ngStyle DirectiveCreate a file "ngStyle.html" in your Angular project directory and copy-paste the following code snippet. ngStyle Directive span { color: black; } ...
Read More