douna2917 2014-08-07 15:42
浏览 46
已采纳

在PHP中将2个或更多png图像合并到基础图像上

I have base image which is circle with Dashes & another 24 images with single dash highlighted. I want to merge those 24 dashes images in base image with the help of PHP GD. or JS Or CSS.

All images are png images.

Please help me.

  • 写回答

1条回答 默认 最新

  • duanchi3109 2014-08-07 15:50
    关注

    Give the images a class or id:

    <img class="progress" src="http://i.stack.imgur.com/ThNPg.png"/>
    <img class="aboveprogress" src="http://i.stack.imgur.com/drRa2.png"/>
    <img class="aboveprogress" src="http://i.stack.imgur.com/YpCTF.png"/>
    

    In CSS tell the images where to display:

    .progress {
        position: fixed;
        top: 5px;
        left:5px;
        z-index: 0;
    }
    .aboveprogress {
        position: fixed;
        top: 5px;
        left:5px;
        z-index: 1;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部