LoginSignup
1
1

More than 3 years have passed since last update.

文字かっこいいやつ

Posted at

バグってたらごめんなさい

メモ帳に張り付けて.htmlでみれる

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<style>
body{
    background: #2561c1;
}
p{
    margin: 0px;
}
.rogo{
    width: 400px;
    height: 200px;
    text-align: -webkit-center;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
@keyframes typing { from { width: 0; } }
@keyframes caret { 50% { border-color: transparent; } }

.rogo_text {
    color: #fff;
    margin-top: 10px;

    font-family: monospace;
    width: 13ch;
    border-right: .08em solid;
    overflow: hidden;
    font-size: 4em;
    white-space: nowrap;
    animation: typing 5s steps(13, end), caret .5s step-end infinite;
}
</style>
<body>

    <div class="rogo">
        <p class="rogo_text">Quantum Group</p>
        <p class="rogo_text">QUANTUM GROUP</p>
    </div>

</body>
</html>

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1