如何为背景图像制作滚动效果



>我需要为这个平台游戏制作一个滚动背景。它需要滚动 2400x500 的图像,而帧大小约为 1440x900。如果它可以随着时间的推移逐渐改变,那就太好了。这是我的代码:

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.*;  
import javax.swing.*;
public class Main extends JFrame {
    public Main() {
        //Creates Title Image 
        JLabel title = new JLabel(" ");
        ImageIcon tl = new ImageIcon("title.gif");
        title.setIcon(tl);
        //Creates Start Image
        final JButton start = new JButton("");
        ImageIcon st = new ImageIcon("start.gif");
        start.setIcon(st);
        //Creates Options Image
        JButton options = new JButton("");
        ImageIcon opt = new ImageIcon("options.gif");
        options.setIcon(opt);
        options.setBackground(Color.BLACK);
        //Creates label for level 0 background image
        JLabel background = new JLabel(" ");
        ImageIcon back = new ImageIcon("level0.gif");
        background.setIcon(back);
        //Creates a panel for level 0
        final JPanel p5 = new JPanel();
        p5.setLayout (new BorderLayout(1, 1));
        p5.add(background);
        //Create first frame for "Start" button
        final JPanel p1 = new JPanel();
        p1.setLayout(new GridLayout(1, 1));
        p1.add(start, BorderLayout.CENTER);
        //Create second panel for title label
        final JPanel p2 = new JPanel(new BorderLayout());
        p2.setLayout(new GridLayout(1, 3));
        p2.add(title, BorderLayout.WEST);
        //Create third panel for "Options" button
        final JPanel p3 = new JPanel(new BorderLayout());
        p3.setLayout(new GridLayout(1, 1));
        p3.add(options, BorderLayout.SOUTH);
        //Creates fourth panel to organize all other primary
        final JPanel p4 = new JPanel(new BorderLayout());
        p4.setLayout(new GridLayout(1, 3));
        p4.add(p1, BorderLayout.WEST);
        p4.add(p2, BorderLayout.CENTER);
        p4.add(p3, BorderLayout.EAST);
        //When button is clicked, it changes the level
        start.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                if(start.isEnabled()) {
                    remove(p4);
                    add(p5, BorderLayout.CENTER);
                    invalidate();
                    validate();
                }
                else {
                    return;
                }
            }
        });
        //Adds fourth panel to frame
        add(p4, BorderLayout.CENTER);
    }
    public static void main(String args[]) {
        Main frame = new Main();
        //Finds screen size of monitor
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        //Creates the frame
        frame.setTitle("Cockadoodle Duty: Awakening");
        frame.setSize(screenSize);
        frame.setLocale(null); 
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
        String background = "#000000";
        frame.setBackground(Color.decode(background));
    }
}
  1. 将包含图标的标签添加到滚动面板
  2. 使用Swing Timer计划滚动
  3. 当计时器触发时,您可以滚动背景。

滚动代码可能如下所示:

JViewport viewport = scrollPane.getViewport();
Point position = viewport.getViewPosition();
position.x += 2; 
viewport.setViiewPosition( position );

最新更新