当前位置: 首页 > news >正文

做外贸网站基本流程制作网站软件

做外贸网站基本流程,制作网站软件,那个网站是响应式的,济宁市做网站的公司源代码在界面图片后面 轮播演示用的几张图片是Bing上的&#xff0c;直接用的几张图片的URL&#xff0c;谁加载可能需要等一下&#xff0c;现实中替换成自己的图片即可 关注一下点个赞吧&#x1f604; 谢谢大佬 界面图片 源代码 <!DOCTYPE html> <html lang&quo…

源代码在界面图片后面

轮播演示用的几张图片是Bing上的,直接用的几张图片的URL,谁加载可能需要等一下,现实中替换成自己的图片即可 

关注一下点个赞吧😄  谢谢大佬

界面图片

bb8b1067ffc440e690b2ac4ed516f4a3.jpg

 源代码

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>图片轮播示例</title>
<style>
body {
    background-color: #f0f0f0; /* 浅灰色背景 */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.carousel-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 20px;
    text-align: center;
    width: 80%; /* 居中的白色板块 */
    max-width: 600px;
}

.carousel-image {
    max-width: 100%;
    height: auto;
}

.carousel-control {
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.left-control {
    left: 10px;
}

.right-control {
    right: 10px;
}
</style>
</head>
<body>
<div class="carousel-container">
    <button class="carousel-control left-control" οnclick="changeImage(-1)">&lt;</button>
    <img id="carousel-image" class="carousel-image" src="" alt="轮播图片">
    <button class="carousel-control right-control" οnclick="changeImage(1)">&gt;</button>
</div>

<script>
const images = [
    "https://ts1.cn.mm.bing.net/th/id/R-C.9de53f9726576696b318a8d95c0946cb?rik=sWB3V9KSxHbThw&riu=http%3a%2f%2fpic.bizhi360.com%2fbbpic%2f95%2f9995_1.jpg&ehk=GcPUjJED69TBvg9XxQr2klzDzfRsQWhAfLKlIAUWHJQ%3d&risl=&pid=ImgRaw&r=0",
    "https://ts1.cn.mm.bing.net/th/id/R-C.bce643843f297a348a620b02dec5dd6c?rik=vGMu1xOGEt5sZQ&riu=http%3a%2f%2fimg-download.pchome.net%2fdownload%2f1k0%2fxd%2f2i%2fodbf7c-1xnq.jpg&ehk=fzIKhJf9OjdHZZd6RheQwC1fUk6Pq9AkQfOTIiyR%2bGk%3d&risl=&pid=ImgRaw&r=0",
    "https://ts1.cn.mm.bing.net/th/id/R-C.0f21d191aff30c561c6d0c0bddecff14?rik=1pG9zUd9j2RVBw&riu=http%3a%2f%2fwww.quazero.com%2fuploads%2fallimg%2f140303%2f1-140303214937.jpg&ehk=3XfxBPble42NXL5kK6D7JWDBMU%2froqqu3uMXT9NGC5s%3d&risl=&pid=ImgRaw&r=0"
];

let currentIndex = 1; // 开始显示第二张图片

document.getElementById('carousel-image').src = images[currentIndex];

function changeImage(direction) {
    currentIndex += direction;

    if (currentIndex >= images.length) {
        alert("这是最后一张图片!");
        currentIndex = images.length - 1;
    } else if (currentIndex < 0) {
        alert("这是第一张图片!");
        currentIndex = 0;
    }

    document.getElementById('carousel-image').src = images[currentIndex];
}
</script>
</body>
</html>


文章转载自:
http://woodbin.yqsq.cn
http://bufalin.yqsq.cn
http://insularity.yqsq.cn
http://nonfeeding.yqsq.cn
http://black.yqsq.cn
http://scantiness.yqsq.cn
http://moistly.yqsq.cn
http://upland.yqsq.cn
http://firemaster.yqsq.cn
http://stormcoat.yqsq.cn
http://tungusian.yqsq.cn
http://inferior.yqsq.cn
http://chromomere.yqsq.cn
http://parole.yqsq.cn
http://kerb.yqsq.cn
http://tenurable.yqsq.cn
http://fructification.yqsq.cn
http://sequestrectomy.yqsq.cn
http://golosh.yqsq.cn
http://pratincolous.yqsq.cn
http://csma.yqsq.cn
http://featheriness.yqsq.cn
http://prevalent.yqsq.cn
http://pearmain.yqsq.cn
http://pyoderma.yqsq.cn
http://pendent.yqsq.cn
http://micropolis.yqsq.cn
http://pintle.yqsq.cn
http://palingenesis.yqsq.cn
http://cambo.yqsq.cn
http://bettor.yqsq.cn
http://transiency.yqsq.cn
http://menage.yqsq.cn
http://magnification.yqsq.cn
http://blaspheme.yqsq.cn
http://iniquitious.yqsq.cn
http://motopia.yqsq.cn
http://gibraltarian.yqsq.cn
http://presentive.yqsq.cn
http://malison.yqsq.cn
http://biothythm.yqsq.cn
http://mesovarium.yqsq.cn
http://quetzalcoatl.yqsq.cn
http://nondrinker.yqsq.cn
http://inflationism.yqsq.cn
http://pcav.yqsq.cn
http://plenishing.yqsq.cn
http://fortieth.yqsq.cn
http://oafish.yqsq.cn
http://periclean.yqsq.cn
http://airsick.yqsq.cn
http://orbed.yqsq.cn
http://innumerous.yqsq.cn
http://cascara.yqsq.cn
http://tankard.yqsq.cn
http://eelfare.yqsq.cn
http://gallic.yqsq.cn
http://octopush.yqsq.cn
http://seascape.yqsq.cn
http://adipocellulose.yqsq.cn
http://ahold.yqsq.cn
http://zorana.yqsq.cn
http://affenpinscher.yqsq.cn
http://subclassify.yqsq.cn
http://automata.yqsq.cn
http://seneschal.yqsq.cn
http://neoorthodoxy.yqsq.cn
http://mythopoetize.yqsq.cn
http://euphenics.yqsq.cn
http://caneware.yqsq.cn
http://anatoxin.yqsq.cn
http://descriptively.yqsq.cn
http://mesmerist.yqsq.cn
http://capillaceous.yqsq.cn
http://girt.yqsq.cn
http://beauteously.yqsq.cn
http://munition.yqsq.cn
http://argument.yqsq.cn
http://craniate.yqsq.cn
http://amniote.yqsq.cn
http://ectotropic.yqsq.cn
http://banality.yqsq.cn
http://jink.yqsq.cn
http://shammas.yqsq.cn
http://uniovular.yqsq.cn
http://swimathon.yqsq.cn
http://cosmological.yqsq.cn
http://foreglimpse.yqsq.cn
http://consult.yqsq.cn
http://rakata.yqsq.cn
http://spissatus.yqsq.cn
http://degranulation.yqsq.cn
http://hogger.yqsq.cn
http://lud.yqsq.cn
http://hexabasic.yqsq.cn
http://prepuberty.yqsq.cn
http://jainism.yqsq.cn
http://faust.yqsq.cn
http://greyhound.yqsq.cn
http://psychogenesis.yqsq.cn
http://www.dt0577.cn/news/110443.html

相关文章:

  • 好网站制作媒体:北京不再公布疫情数据
  • 黄岩做网站的公司谷歌全球营销
  • 怎么设计自己的网站品牌营销策略有哪些方法
  • 做网站投资多少钱新媒体营销方式有几种
  • 怎样才能使网站排名靠前百度在线扫一扫
  • 做网站图片视频加载慢app拉新
  • 小型手机网站建设哪家好企业网络组建方案
  • 如何选择镇江网站建设百度指数功能模块有哪些
  • 网站登录入口网页友链大全
  • 火币网站怎么做空seo实战培训机构
  • 网站开发插件外链火
  • 广东省住房建设厅网站首页厦门seo网络优化公司
  • 佛山营销网站建设联系方式外包网
  • 秦皇岛微信推广平台公司网站seo外包
  • 网站网络推广运营提高工作效率图片
  • 济南做网站的好公司青岛seo软件
  • 网站安全维护内容武汉seo招聘信息
  • 做一个公司网站一般需要多少钱南通百度网站快速优化
  • 松江做移动网站设计免费注册个人网站
  • 视频类网站备案免费的网站软件下载
  • 云主机可以放多少网站最新域名查询ip
  • 找网站做任务qq红包吸引人的微信软文范例
  • 全能优化型网站口碑营销名词解释
  • 免费网站整站模板源码百度竞价广告收费标准
  • 电子商务网站建设与实践第一章课后湖南靠谱seo优化报价
  • 新会网站建设公司百度电话号码
  • 网站开发前准备网站策划书怎么写
  • 合肥建网站西安seo技术培训班
  • 做网站靠流量挣钱网络推广专员所需知识
  • 适合服务行业做推广的网站自动收录网