Set Grayscale Effect with CSS

Jennifer Nicholas
Updated on 27-Jun-2020 12:23:29

253 Views

The grayscale effect is used to convert the colors of the object to 256 shades of gray. The following parameter is used in this filter −ParameterDescriptionGrayConverts the colors of the object to 256 shades of gray.ExampleYou can try to run the following code to set grayscale effect −Live Demo                         Text Example:                CSS Tutorials          

Wave Effect with CSS

karthikeya Boyini
Updated on 27-Jun-2020 12:22:47

2K+ Views

Wave effect is used to give the object a sine wave distortion to make it look wavy.The following parameters can be used in this filter:S.NoParameter & Description1.AddA value of 1 adds the original image to the waved image, 0 does not.2.FreqThe number of waves.3.LightThe strength of the light on the wave (from 0 to 100).4.PhaseAt what degree the sine wave should start (from 0 to 100).5.StrengthThe intensity of the wave effect.ExampleYou can try to run the following code to set wave effect:Live Demo                         Text Example:       CSS Tutorials    

Set Invert Effect with CSS

Vrundesha Joshi
Updated on 27-Jun-2020 12:22:14

293 Views

Invert effect is used to map the colors of the object to their opposite values in the color spectrum, i.e., to create a negative image.The following parameter is used in this filter:Sr.NoParameter & Description1InvertMaps the colors of the object to their opposite value in the color spectrum.ExampleYou can try to run the following code to implement the invert effect:Live Demo                         Text Example:                CSS Tutorials          

Turn Transparent Pixels to a Specified Color with CSS

Chandu yadav
Updated on 27-Jun-2020 12:21:40

375 Views

Use the mask effect to turn transparent pixels to a specified color and makes opaque pixels transparent. The following parameter is used in this filterS.NoParameter & Description1ColorThe color that the transparent areas will become.ExampleYou can try to run the following code to implement mask effectLive Demo                         Text Example:       CSS Tutorials    

Computer Science Engineering Government Jobs

siddhartha kotamraju
Updated on 27-Jun-2020 12:21:20

194 Views

There are many openings for CSE and IT engineering graduates in the Indian Government sector. Here is the list of Major IT Organizations in Government of India which have openings every year for fresh engineering graduates.Centre for Development of Advanced Computing (CDAC), ONGC(Oil and Natural Gas Corporation)GAIL(Gas Authority India Ltd )National Informatics Centre (NIC)HAL (Hindustan Aeronautics LimitedEducation and Research Network (ERNET India)Software Technology Parks of India (STPI)SAIL(Steel Authority of India)DRDO (Defence Research and Development Organization)MECON limitedBARC - Bhabha Atomic Research Centre ( BARC )MECL - Mineral Exploration Corporation LimitedECIL - Electronics Corporation of India LimitedFCI - Food Corporation of IndiaCDAC ... Read More

What to Do to Become an Interpreter

siddhartha kotamraju
Updated on 27-Jun-2020 12:20:04

187 Views

An Interpreter or a Professional translator is a very good career. There are some basic requirements to become one.You need to be a graduate to become an Interpreter.Should be fluent in at least 2 languagesYou can attend formal Interpreter training and attain some kind of certification which is optional.Strong communication skills i.e., fluent speaking skills and excellent listening skills are a must to become an Interpreter.

EI and DI Instructions in 8085

George John
Updated on 27-Jun-2020 12:17:20

4K+ Views

In 8085 is having five internal interrupt signals that correspond to the five external interrupt pins. And these interrupts are only recognized only when the internal interrupt signal is activated, the 8085 gets interrupted, provided higher priority internal interrupt signals are not active at the same time. The 8085 checks all these internal interrupt signals in the penultimate clock cycle of the last machine cycle of instruction.With in 8085, there is a flip-flop called IE flip-flop. Here IE stands for Interrupt Enable. 8085 interrupt system is disabled whenever this flip-flop is reset to the 0 states. That is, even if ... Read More

Flip-Out X Animation Effect with CSS

Samual Sam
Updated on 27-Jun-2020 12:16:55

159 Views

To implement Flip Out X Animation effect with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 1s;             animation-duration: 1s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes flipOutX {             0% {                -webkit-transform: perspective(400px) rotateX(0deg);                opacity: 1;             }             100% {                -webkit-transform: perspective(400px) rotateX(90deg);                opacity: 0;             }          }          @keyframes flipOutX {             0% {                transform: perspective(400px) rotateX(0deg);                opacity: 1;             }             100% {                transform: perspective(400px) rotateX(90deg);                opacity: 0;             }          }          .flipOutX {             -webkit-animation-name: flipOutX;             -webkit-backface-visibility: visible !important;             animation-name: flipOutX;             backface-visibility: visible !important;          }                           Reload page                function myFunction() {             location.reload();          }          

Flip In Y Animation Effect with CSS

Lakshmi Srinivas
Updated on 27-Jun-2020 12:16:22

93 Views

To implement Flip In Y Animation effect with CSS, you can try to run the following code:ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 1s;             animation-duration: 1s;             -webkit-animation-fill-mode: both;             animation-fill-mode: ... Read More

SIM and RIM Instructions in 8085

Arjun Thakur
Updated on 27-Jun-2020 12:15:52

17K+ Views

In 8085 Instruction set, SIM (Set Interrupt Mask) and RIM (Read Interrupt Mask) instructions can perform mask and unmask RST7.5, RST6.5, and RST5.5 interrupt pins and can also read their status. In 8085 Instruction set, SIM stands for “Set Interrupt Mask”. It is 1-Byte instruction and it is a multi-purpose instruction. The main uses of SIM instruction are –Masking/unmasking of RST7.5, RST6.5, and RST5.5Reset to 0 RST7.5 flip-flopPerform serial output of dataMnemonics, OperandOpcode(in HEX)BytesSIM301When SIM instruction is executed then the content of the Accumulator decides the action to be taken. So before executing the SIM instruction, it is mandatory to initialize ... Read More

Advertisements