CSS3内联样式,请问怎么把写在CSS文件中的CSS3样式改到html内联中?
(原型CSS3,循环动画),,这是写在CSS文件中的@keyframesMotionScale{from{transform:matrix3d(1,0,0,0,0,1,0...
(原型CSS3,循环动画),,这是写在CSS文件中的
@keyframes MotionScale {
from {
transform: matrix3d(
1,0,0,0,
0,1,0,0,
0,0,1,0,
-50,-100,0,1.1
);
}
50% {
transform: matrix3d(
1,0,0,0,
0,1,0,0,
0,0,1,0,
0,0,0,0.9
);
}
to {
transform: matrix3d(
1,0,0,0,
0,1,0,0,
0,0,1,0,
50,100,0,1.1
)
}
}
HTML
<view class="foo">
内容内容内容
</view> 展开
@keyframes MotionScale {
from {
transform: matrix3d(
1,0,0,0,
0,1,0,0,
0,0,1,0,
-50,-100,0,1.1
);
}
50% {
transform: matrix3d(
1,0,0,0,
0,1,0,0,
0,0,1,0,
0,0,0,0.9
);
}
to {
transform: matrix3d(
1,0,0,0,
0,1,0,0,
0,0,1,0,
50,100,0,1.1
)
}
}
HTML
<view class="foo">
内容内容内容
</view> 展开
2个回答
展开全部
You’ve written some HTML and now need to style it with CSS. One way is to use inline styles, which is what this article is about.
您已经编写了一些HTML,现在需要使用CSS对其进行样式设置。 一种方法是使用内联样式,这就是本文的目的。
<p style="color: red; font-size: 20px;">This is my first paragraph.</p>
Before we jump into the nuances of inline styles—when, why, and how to use them—it’s important to be aware of the other ways to style your HTML. That way, you choose the best option for your code.
在深入介绍内联样式的细微差别(何时,为什么以及如何使用它们)之前,重要的是要知道其他样式化HTML的方式。 这样,您可以为代码选择最佳选项。∵Here’s a summary of your options.
这是您的选择的摘要。
外部样式表 (External Stylesheet)
Developers typically keep all of their CSS in an external stylesheet. In your HTML file, use the <link> element to link to your external stylesheet, which contains your CSS.
开发人员通常将所有CSS保留在外部样式表中。 在HTML文件中,使用<link>元素链接到包含CSS的外部样式表。
您已经编写了一些HTML,现在需要使用CSS对其进行样式设置。 一种方法是使用内联样式,这就是本文的目的。
<p style="color: red; font-size: 20px;">This is my first paragraph.</p>
Before we jump into the nuances of inline styles—when, why, and how to use them—it’s important to be aware of the other ways to style your HTML. That way, you choose the best option for your code.
在深入介绍内联样式的细微差别(何时,为什么以及如何使用它们)之前,重要的是要知道其他样式化HTML的方式。 这样,您可以为代码选择最佳选项。∵Here’s a summary of your options.
这是您的选择的摘要。
外部样式表 (External Stylesheet)
Developers typically keep all of their CSS in an external stylesheet. In your HTML file, use the <link> element to link to your external stylesheet, which contains your CSS.
开发人员通常将所有CSS保留在外部样式表中。 在HTML文件中,使用<link>元素链接到包含CSS的外部样式表。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询