网页特效代码的应用方式有两种:
要使用内联式特效代码,请使用
style
属性:
这是红色的文本。
这将在段落文本中应用红色和 20px 大小的字体。
要使用外部式特效代码,请创建一个CSS 文件(例如
style.css
),并在其中编写您的代码:
标签链接到 CSS 文件:
html
这将把 CSS 文件中的代码应用到页面上的所有段落元素。
color: rrggbb;
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-style: italic;
background-color: rrggbb;
background-image: url(image.jpg);
background-repeat: repeat;
background-position: center;
background-size: cover;
border-width: 1px;
border-style: solid;
border-color: rrggbb;
border-radius: 5px;
animation: fadeIn 2s;
animation: fadeOut 2s;
animation: scale 2s;
animation: rotate 2s;
animation: move 2s;
box-shadow: 5px 5px 5px 888888;
opacity: 0.5;
border-radius: 5px;
text-align: center;
vertical-align: middle;
这些只是您可以用于创建各种网页特效的一些常见代码。通过使用这些代码,您可以创建更吸引人和引人入胜的网站。
本文地址:https://www.qianwe.com/article/082c6490d1aa9b18fe4b.html