Saturday, May 30, 2020

‘Inadvertently’ Disables Color Filter Camera Globally in OnePlus 8 Pro; McLaren Partnership Revoked

OnePlus 8 Pro

OnePlus has some plans to re-enable the fourth camera through the next OTA update,



OnePlus 8 Pro users in global markets have received a new OxygenOS update that has “inadvertently” disabled the Color Filter camera that was recently found to have “see-through” capabilities for some materials. The new software version, which appears as OxygenOS 10.5.9 and the company disabled the Color Filter camera through an update specifically meant for the OnePlus 8 Pro users in China. British carmaker McLaren has confirmed that it's longer in partnership with OnePlus and companies had collaborated to launch special edition smartphones in the past.

The latest OxygenOS update that has been pushed to markets including the US and Europe has disabled the Color Filter camera. As  by XDA Developers said that the update temporarily removes the Photochrome filter. It is also mention that the feature will be come back around June.

Important: OnePlus 8 Pro has not yet been made available for purchase in India. The phone was planned to go on sale starting May 29, but the company had to postpone its schedule- might be cause of the six workers tested COVID-19 positive in the Oppo manufacturing plant in Greater Noida.

Thursday, May 28, 2020

Apps to learn new things during lockdown: Duolingo, Skillshare and more

Learn


Technology has once again become indispensable as millions of us spend our time locked inside our homes. From helping us connect with our loved ones and colleagues to order essential items online, technology is showing that this backbone cannot be fractured. The biggest sign of technology or tech companies being at the helm of this pandemic is the partnership between Apple and Google



Duolingo


Duolingo

There are apps and then there is Duolingo, arguably the most popular app to learn new languages. This cross platform app will help you become bilingual during this lockdown. The app calls it “free and effective” and there are millions of users to vouch for it. What makes it really unique is those users who refine the language further with feedback. All you need to do is get started by selecting the language you want to learn, be it French, Spanish or Portuguese.

The highlight of this app is the way it gamifies learning experience. It involves a mix of audio and generic questions to help you perfect the language and even hone your pronunciation.


Mimo


Mimo

 Mimo is the app you need to get coding with step-by-step guidance tailored for different experience levels. The app makes it super easy to understand coding. To get started, answer a few quick questions and Mimo will calculate your curriculum. You can learn here HTML, Swift, Python and other programming languages.

Skillshare


There is no such thing as one size fits all or one lesson works for everybody when it comes to learning. That’s where Skillshare comes and simplifies the process. Instead of offering one thing, Skillshare covers everything one can imagine. It is the “Get Smart Faster” equivalent of learning experience. When you open the app, it has a “Best in” shout out for a specific category. You can tap here and filter by areas of interest. While it has free classes, you can unlock value with a premium subscription.

Saturday, May 23, 2020

How to Create a Product Postcard Using HTML and CSS

Product Postcard Video


HTML CODES

<html>
<head>
<link rel="stylesheet" href="productcard.css">
</head>
<body>
<div class="container">
<div class="card">
<div class="imgBx">
<img src="pic/aa1.png">
</div>
<div class="contentBx">
<h2>Nike Shoes</h2>
<div class="size">
<h3>Size: </h3>
<span>7</span>
<span>8</span>
<span>9</span>
<span>10</span>
</div>
<div class="color">
<h3>Color: </h3>
<span></span>
<span></span>
<span></span>
</div>
<a href="">Buy Now</a>
</div>
</div>
</div>



</body>
</html>


CSS CODES

*
{
margin: 0;
padding: 0;
}
body
{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #131313;
}
.container
{
position: relative;
}
.container .card
{
position: relative;
width: 320px;
height: 450px;
background: #232323;
border-radius: 20px;
overflow: hidden;
}
.container .card:before
{
    content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ffd700;
clip-path: circle(150px at 80% 20%);
transition: 0.5s ease-in-out;
}
.container .card:hover:before
{
clip-path: circle(300px at 80% -20%);
}
.container .card:after
{
    content: 'Nike';
position: absolute;
top: 30%;
left: -20%;
font-size: 12em;
font-weight: 800;
font-style: italic;
color: rgba(255,255,255,0.04);

}
.container .card .imgBx
{
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10000;
width: 100%;
height: 220px;
transition: 0.5s;
}
.container .card:hover .imgBx
{
top: 0%;
transform: translateY(0%);

}
.container .card .imgBx img
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%) rotate(-25deg);
width: 100%;
}
.container .card .contentBx
{
position: absolute;
bottom: 0;
width: 100%;
height: 100px;
text-align: center;
transition: 1s;
z-index: 10;
}
.container .card:hover .contentBx
{
height: 210px;
}
.container .card .contentBx h2
{
position: relative;
font-weight: 600;
letter-spacing: 1px;
color: #fff;
}
.container .card .contentBx .size,
.container .card .contentBx .color
{
display: flex;
justify-content: center;
align-items: center;
padding: 8px 20px;
transition: 0.5s;
opacity: 0;
visibility: hidden;
}
.container .card:hover .contentBx .size
{
opacity: 1;
visibility: visible;
transition-delay: 0.6s;
}
.container .card:hover .contentBx .color
{
opacity: 1;
visibility: visible;
transition-delay: 0.5s;
}
.container .card .contentBx .size h3,
.container .card .contentBx .color h3
{
color: #fff;
font-weight: 300;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 2px;
margin-right: 10px;
}
.container .card .contentBx .size span
{
width: 26px;
height: 26px;
text-align: center;
line-height: 26px;
font-size: 14px;
display: inline-block;
color: #111;
background: #fff;
margin: 0 5px;
transition: 0.5s;
color: #111;
border-radius: 4px;
cursor: pointer;
}
.container .card .contentBx .size span:hover
{
background: #ffd700;
}
.container .card .contentBx .color span
{
width: 20px;
height: 20px;
background: #ff0;
border-radius: 50%;
margin: 0 5px;
cursor: pointer;
}
.container .card .contentBx .color span:nth-child(2)
{
background: #ffd700;
}
.container .card .contentBx .color span:nth-child(3)
{
background: #03a9f4;
}
.container .card .contentBx .color span:nth-child(4)
{
background: #e91e63;
}
.container .card .contentBx a
{
display: inline-block;
padding: 10px 20px;
background: #fff;
border-radius: 4px;
margin-top: 10px;
text-decoration: none;
font-weight: 600;
color: #111;
opacity: 0;
transform: translateY(50px);
transition: 0.5s;
}
.container .card:hover .contentBx a
{
opacity: 1;
transform: translateY(0px);
transition-delay: 0.75s;
}



Saturday, May 16, 2020

Responsive Design Scripts

Responsive Design Design Script Tutorial

Please watch this video For more information about Responsive Design.


Responsive Design Video


HTML Codes for Responsive Design


<html>
<head>
<link rel="stylesheet" href="responsive.css">
</head>
<body>
<!---Banner--->
<div class="banner">
<header>
<a href="#" class="logo">Brand Name</a>
<div class="toggle"></div>
</header>
<img src="bg.jpg">
<div class="content">
<h2>Success by Design</h2>
<p>
The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one. It is compulsary to apear in every exam. In case of illness medical certificate should be submitted in this case the student 
may promoted according to rules. The minimum pass percentage for every subject is thirty three percent. One the result is requested 
The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one.
</p>
</div>
</div>

<!---About--->

<section class="about">
<div class="contentBx">
<h2 class="heading">About Us</h2>
<p class="text">
The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one. It is compulsary to apear in every exam. In case of illness medical certificate should be submitted in this case the student 
may promoted according to rules. The minimum pass percentage for every subject is thirty three percent. One the result is requested 
The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one.<br><br>
The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one. It is compulsary to apear in every exam. In case of illness medical certificate should be submitted in this case the student 
may promoted according to rules. The minimum pass percentage for every subject is thirty three percent. One the result is requested 
The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one.
</p>
</div>
<div class="imgBx"></div>
</section>

<!---Services--->
<section class="services">
<h2 class="heading">Our Services</h2>
<p class="text">The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one. It is compulsary to apear in every exam. In case of illness medical certificate should be submitted in this case the student 
may promoted according to rules. The minimum pass percentage for every subject is thirty three percent. One the result is requested 
The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one.</p>
<div class="container">
<div class="serviceBx">
<div>
<img src="icon1.png">
<h2>Design</h2>
</div>
</div>
<div class="serviceBx">
<div>
<img src="icon2.png">
<h2>Development</h2>
</div>
</div>
<div class="serviceBx">
<div>
<img src="icon3.png">
<h2>Branding</h2>
</div>
</div>



</div>

</section>

<!---Technology--->

<section class="technology">
<div class="contentBx">
<h2 class="heading">We use cutting edge technology</h2>
<p class="text">The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one. It is compulsary to apear in every exam. In case of illness medical certificate should be submitted in this case the student 
may promoted according to rules. The minimum pass percentage for every subject is thirty three percent. One the result is requested 
The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one.</p>
</div>
<div class="imgBx">
<img src="tech.png">
</div>
</section>

<!---Client--->

<section class="client">
<h2 class="heading">Our Client</h2>
<p class="text">The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one. It is compulsary to apear in every exam. In case of illness medical certificate should be submitted in this case the student 
may promoted according to rules. The minimum pass percentage for every subject is thirty three percent. One the result is requested 
The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one.</p>
<div class="imgBx">
<img src="brand1.png">
<img src="brand2.png">
<img src="brand3.png">
<img src="brand4.png">
</div>
</section>

<!---Testimonials--->

<section class="testimonials">
<h2 class="heading">What Our Client says</h2>
<div class="container">
<div class="contentBx">
<div>
<p>The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one. It is compulsary to apear in every exam. In case of illness medical certificate should be submitted in this case the student 
may promoted according to rules.</p><br>
<h3>Someone Famous</h3>
</div>
</div>
<div class="contentBx">
<div>
<p>The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one. It is compulsary to apear in every exam. In case of illness medical certificate should be submitted in this case the student 
may promoted according to rules.</p><br>
<h3>Someone Famous</h3>
</div>
</div>
</div>
</section>

<!---Contact--->
<section class="contact">
<h2 class="heading">Contact Us</h2>
<p class="text">The parents are requested to see the report card positively. Effective measures must be taken by the parents to make up in the 
failing subject. The report card should be kept clean. If the report card is lost, rupees fifty will be charged for the new 
one. It is compulsary to apear in every exam. In case of illness medical certificate should be submitted in this case the student 
may promoted according to rules.</p>
</section>

<section class="about">
<div class="contentBx redbg">

<div class="form">
<div class="inputBx">
<input type="text" name="" placeholder="Full Name">
</div>
<div class="inputBx">
<input type="text" name="" placeholder="Email Address">
</div>
<div class="inputBx">
<input type="text" name="" placeholder="Mobile No.">
</div>
<div class="inputBx">
<textarea placeholder="Write your message here"></textarea>
</div>
<div class="inputBx">
<input type="submit" name="" value="Send">
</div>
</div>
</div>
<div class="imgBx2"></div>
</section>

<!---Footer--->
<section class="footer">
<p class="text">Design & Developed By Moin Qureshi</p>
<ul>
<p class="text">Follow us on : </p>
<li><a href="#"><img src="facebook.png"></a></li>
<li><a href="#"><img src="twitter.png"></a></li>
<li><a href="#"><img src="linkedin.png"></a></li>
</ul>
</section>

</body>
</html>



CSS Codes for Responsive Design

*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial;
}
.banner
{
position: relative;
width: 100%;
height: 100vh;
background: #3475ca;
display: flex;
justify-content: center;
align-items: center;
}
.banner img
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.25;
}
.banner .content 
{
position: relative;
max-width: 750px;
text-align: center;
}
.banner .content h2
{
color: #fff;
font-size: 60px;
}
.banner .content p
{
color: #fff;
font-size: 18px;
}
.banner header
{
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 40px 100px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 10000;
}
.banner header .logo
{
color: #fff;
text-decoration: none;
font-size: 24px;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 1px;
}
.banner header .toggle
{
position: relative;
width: 36px;
height: 28px;
background: url(toggle.png);
background-size: cover;
cursor: pointer;
}
.about
{
position: relative;
width: 100%;
display: flex;
}
.about .contentBx
{
background: #162c3b;
padding: 100px;
width: 50%;
}
.heading
{
color: #fff;
font-size: 30px;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 10px;
}
.text
{
color: #fff;
font-size: 16px;
font-weight: 300;
letter-spacing: 1px;
}
.about .imgBx
{
background: url(window.jpg);
width: 50%;
background-size: cover;
background-position: center;
}
.services
{
background: #12222d;
padding: 100px;
text-align: center;
}
.services .container
{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-top: 60px;
}
.services .container .serviceBx
{
position:relative;
background: #fff;
width: 350px;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
}
.services .container .serviceBx img
{
max-width: 100px;
}
.services .container .serviceBx h2
{
font-weight: 500;
font-size: 20px;
letter-spacing: 1px;
}
.technology
{
background: #3f8ffc;
width: 100%;
padding: 100px;
padding-top: 300px;
margin-top: -300px;
display: flex;
justify-content: space-between;
align-items: center;
}
.technology .contentBx
{
max-width: 800px;
}
.technology .imgBx
{
max-width: 250px;
}
.technology .imgBx img
{
max-width: 100%;
}
.client
{
background: #162c3b;
padding: 100px;
text-align: center;
}
.client .imgBx
{
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-top: 40px;
}
.client .imgBx img
{
max-width: 200px;
margin: 20px;
opacity: 0.25;
cursor: pointer;
}
.client .imgBx img:hover
{
opacity: 1;
}
.testimonials
{
position: relative;
padding: 100px;
background: #12222d;
text-align: center;
}
.testimonials .container
{
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 40px;
flex-wrap: wrap;
}
.testimonials .container .contentBx
{
background: #fff;
padding: 60px 50px;
width: 550px;
display: flex;
justify-content: center;
align-items: center;
text-align: left;
}
.testimonials .container .contentBx p
{
font-style: italic;
}
.testimonials .container .contentBx h3
{
width: 100%;
text-align: end;
font-weight: 500;
color: #3f8ffc;
}
.contact
{
padding: 100px;
background: #162c3b;
text-align: center;
}
.imgBx2
{
background: url(bg2.jpg);
background-size: cover;
background-position: center;
width: 50%;
}
.redbg
{
background: url(red.jpg) !important;
background-size: cover;
background-position: center;
}
.form .inputBx
{
margin-bottom: 40px;
}
.form .inputBx input
{
width: 100%;
background: transparent;
box-shadow: none;
border: none;
outline: none;
padding: 10px 0;
font-size: 18px;
font-weight: 300;
color: #fff;
border-bottom: 2px solid #fff;
}
.form .inputBx input::placeholder
{
color: #fff;
}

.form .inputBx textarea
{
width: 100%;
background: transparent;
box-shadow: none;
border: none;
outline: none;
padding: 10px 0;
font-size: 18px;
font-weight: 300;
color: #fff;
min-height: 150px;
border-bottom: 2px solid #fff;
}
.form .inputBx textarea::placeholder
{
color: #fff;
}
.form .inputBx input[type="submit"]
{
width: 150px;
background: #fff;
color: #111;
cursor: pointer;
font-weight: 400;
}
.footer
{
background: #162c3b;
padding: 20px 100px;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer ul
{
display: flex;
justify-content: center;
align-items: center;
}
.footer ul li 
{
list-style: none;
}
.footer ul li a 
{
text-decoration: none;
display: inline-block;
margin: 0 10px;
}
.footer ul li a img 
{
filter: invert(1);
max-width: 20px;
}
@media (max-width: 991px)
{
.banner
{
padding: 50px;
}
.banner header
{
padding: 20px 50px;
}
.banner .content h2
{
font-size: 36px;
}
.banner .content p 
{
color: #fff;
font-size: 16px;
}
.about 
{
flex-direction: column;
}
.about .contentBx,
.about .imgBx
{
width: 100%;
padding: 50px;
min-height: 400px;
text-align: center;
}
.services
{
padding: 50px;
}
.services .container
{
justify-content: center;
margin-top: 20px;
}
.services .container .serviceBx
{
margin: 20px;
width: 300px;
height: 350px;
}
.technology
{
padding: 50px;
padding-top: 300px;
justify-content: center;
flex-direction: column;
}
.technology .imgBx 
{
margin-top: 40px;
max-width: 250px;
}
.client 
{
padding: 50px;
}
.client .imgBx
{
justify-content: center;
}
.testimonials
{
padding: 50px;
}
.testimonials .contentBx
{
padding: 60px 40px;
max-width: 550px;
margin-bottom: 40px;
}
.testimonials .contentBx:last-child
{
margin-bottom: 0px;
}
.contact 
{
padding: 50px;
}
.footer 
{
padding: 20px 50px;
flex-direction: column-reverse;
text-align: center;
}
.footer ul 
{
margin-bottom: 20px;
}



}