动画与新标志解锁!!!!
时间:2025-01-17 18:18:33 336浏览 收藏
各位小伙伴们,大家好呀!看看今天我又给各位带来了什么文章?本文标题是《动画与新标志解锁!!!!》,很明显是关于文章的文章哈哈哈,其中内容主要会涉及到等等,如果能帮到你,觉得很不错的话,欢迎各位多多点评和分享!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Channel Logo</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
overflow: hidden;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
.logo-box {
width: 200px;
height: 200px;
background: linear-gradient(135deg, #ff416c, #ff4b2b);
border-radius: 50%;
box-shadow: 0 0 30px #ff4b2b;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
transition: all 0.7s ease-in-out;
position: relative;
}
.logo-box:hover {
width: 400px;
height: 250px;
border-radius: 30px;
background: linear-gradient(135deg, #1f1c2c, #928dab);
box-shadow: 0 0 50px #928dab;
}
.logo {
width: 200px;
height: 200px;
background: white;
border-radius: 50%;
transition: all 0.7s ease-in-out 0.7s;
overflow: hidden;
position: absolute;
}
.logo img {
width: 100%;
height: 100%;
object-fit: cover;
}
.logo-box:hover .logo {
right: 30px;
width: 100px;
height: 100px;
top: 15px;
border-radius: 50%;
}
.heading {
font-family: 'Montserrat', sans-serif;
font-size: 2em;
font-weight: bolder;
color: #fff;
position: absolute;
left: 30px;
top: 40px;
opacity: 0;
transition: opacity 0.7s ease-in-out 0.3s;
}
.logo-box:hover .heading {
opacity: 1;
}
.text {
font-family: 'Montserrat', sans-serif;
font-size: 1em;
color: #ccc;
position: absolute;
left: 30px;
bottom: 40px;
opacity: 0;
transition: opacity 0.7s ease-in-out 0.5s;
}
.logo-box:hover .text {
opacity: 1;
}
</style>
</head>
<body>
<div class="container">
<div class="logo-box">
<div class="heading">Prince_Codes1</div>
<div class="text">
"Transforming lines of code into vibrant digital art – Welcome to Prince_Codes1!"<br><br>
"Follow us for visually stunning web animations and creative coding tutorials!"
</div>
<div class="logo"> <img alt="" src="./logo.png"></img></div>
</div>
</div>
</body>
</html>
本篇关于《动画与新标志解锁!!!!》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!
相关阅读
更多>
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
190 收藏
-
295 收藏
-
256 收藏
-
211 收藏
-
474 收藏
-
445 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习