在网页制作中,怎么把图片应用为动态HTML效果

 我来答
育知同创教育
2017-06-21 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
展开全部
用PS做的是效果图,需要前端开发人员编写代码才可以在网站上展示出来。
简单来说,在PS里做好之后,需要切图。把图片切割成适合在网站上浏览。
切图时需要把文字分离出图片的要处理好。
切好图片之后,需要用html结合JavaScript等知识编写代码。
这样写出的页面还只是静态的网站。
如果想要做成动态的效果,还需要搭建后台,连接数据库等。
十七叔吖
2019-08-04
知道答主
回答量:5
采纳率:0%
帮助的人:3721
展开全部
让图片左右晃动,例如通过CSS代码来实现
<html>
<head>
<title>aaa</title>
</head>
<style>
.div1{
height:300px;
background-image: url(TYPanorama.jpg);
background-position: 0px 0px;
background-repeat: repeat-x;
animation: animatedBackground 10s linear infinite;
-moz-animation: animatedBackground 10s linear infinite;
-o-animation: animatedBackground 10s linear infinite;
}
@-webkit-keyframes animatedBackground {
0% { background-position: 0 0; }
12% { background-position: 60% 0; }
25% { background-position: 120% 0; }
38% { background-position: 60% 0; }
50% {background-position: 0 0; }
62% {background-position: -60% 0; }
75% {background-position: -120% 0; }
88% {background-position: -60% 0; }
100% {background-position: 0 0; }
}
@-moz-keyframes animatedBackground {
0% { background-position: 0 0; }
12% { background-position: 60% 0; }
25% { background-position: 120% 0; }
38% { background-position: 60% 0; }
50% {background-position: 0 0; }
62% {background-position: -60% 0; }
75% {background-position: -120% 0; }
88% {background-position: -60% 0; }
100% {background-position: 0 0; }
}
@-o-keyframes animatedBackground {
0% { background-position: 0 0; }
12% { background-position: 60% 0; }
25% { background-position: 120% 0; }
38% { background-position: 60% 0; }
50% {background-position: 0 0; }
62% {background-position: -60% 0; }
75% {background-position: -120% 0; }
88% {background-position: -60% 0; }
100% {background-position: 0 0; }
}
@keyframes animatedBackground {
0% { background-position: 0 0; }
12% { background-position: 60% 0; }
25% { background-position: 120% 0; }
38% { background-position: 60% 0; }
50% {background-position: 0 0; }
62% {background-position: -60% 0; }
75% {background-position: -120% 0; }
88% {background-position: -60% 0; }
100% {background-position: 0 0; }
}
</style>
<body>
<div class="div1"></div>
</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式