gpt4 book ai didi

html - 我的带有 animated.css 的 html/css 元素中没有动画

转载 作者:太空宇宙 更新时间:2023-11-03 22:33:11 25 4
gpt4 key购买 nike

大家好, friend 们...我几天前开始进行 css 编程,我在互联网上找到了这个网站 --> https://daneden.github.io/animate.css/在一些视频的帮助下,我尝试在我的应用程序中使用网站上提供的动画,但没有结果。有人可以帮助我将网站中的代码与我的代码集成吗?我会为 div class="layout_generale"设置动画。

<HTML>
<HEAD>
<link rel="stylesheet" type="text/css" href="style_registration.css">

<TITLE>Registrati</TITLE>
</HEAD>
<BODY>

<FORM action="/Esercizio_14.3tomcat/registration" method="POST">
<div class="layout_generale">
<p>
<BR> Nome <INPUT type="text" name="firstname" value=""><BR>
<BR> Cognome <INPUT type="text" name="lastname" value=""><BR>
<BR> <BR>
<INPUT type="radio" name="sex" value="Male">
Maschio<BR>
<INPUT type="radio" name="sex" value="Female">
Femmina<BR> <BR>
Email <INPUT type="email" name="email" value=""> <BR> <BR>
Username <INPUT type="text" name="username" value=""> <BR> <BR>
Password <INPUT type="password" name="password" value=""><BR> <BR>
<BR>
<INPUT type="submit" value="Invio">
<INPUT type="reset" value="Cancella">
</p>
</div>
</FORM>

这是css文件:

.layout_generale {
background-color: rgba(211, 211, 211, 0.8);
border-radius: 50px 0px 50px 0px;
border: 5px solid lightgrey;
width: 500px;
position: absolute;
top: 15%;
left: 50%;
margin-left: -250px;
}

body{
background-image: url('ft-bk.jpg');
background-repeat: no-repeat;
}

p{
text-align: center;
font-color: black;
font-weight: bold;
font-family: Arial, Helvetia, sans-serif;
}

input[type=text], input[type=password], input[type=email]{
width: 50%;
padding: 5px 5px;
margin: 5px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 10px;
box-sizing: border-box;
font-family: Arial, Helvetia, sans-serif;
}


input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
background-color: lightblue;
}


input[type=submit], input[type=reset] {
background-color: #203231;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}

我从网站上下载的代码放在另一个 CSS 文件中……有什么帮助吗?显然,欢迎使用其他动画方式。

最佳答案

您需要在 HTML 头中链接动画样式表,例如:

<link rel="stylesheet" href="animate.min.css">

然后将特定的类添加到您的 HTML 元素中,例如:

<div class="layout_generale animated infinite bounce">Example</div>

文档解释得非常好:https://github.com/daneden/animate.css

关于html - 我的带有 animated.css 的 html/css 元素中没有动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47777480/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com