本文目录一览:
java中怎样在界面中显示图片
方法一:
[java] view plain copy
JLabel helloLabel = new JLabel("New label");
helloLabel.setIcon(new ImageIcon("E:\\javaSE\u4EE3\u7801\\TimeManager\\asset\\hello.gif"));
helloLabel.setBackground(Color.BLACK);
helloLabel.setBounds(0, 0, 105, 50);
contentPane.add(helloLabel);
方法二:
[java] view plain copy
ImageIcon imagetoshow=new ImageIcon(urlofimagetoshow);
JLabel showimagelabel=new JLabel(imagetoshow);
this.getLayeredPane().add(showimagelabel,
new Integer(Integer.MIN_VALUE)); // 设置JLabel在最底层
showimagelabel.setBounds(0, 0, 500,150);
Java中如何实现在HTML中用循环语句显示多张图片。
使用jsp小脚本
%
for(int i=0;inum;i++){
%
img src="" //在双引号中可以写路径也可以在for之前把图片路径存放在一个数组中,然后在双引号内写%=数组[下标] %
%
}
%
例如你可以这样写:
%
String [] parth=new String[]{"../image/1.jpg","../image/2.jpg"};//定义数组,用来存放图片路径,本代码中的图片路径为上一级文件夹的image文件夹中.
for(int i=0;iparth.length;i++){
%
img src="%=parth[i] %"
%} %
也可把数组内容写为:String [] parth=new String[]{"1.jpg","2.jpg"};
这样的话要在使用时这样写:img src="../image/%=parth[i] %"
两中路径的写法是一样的.以后有什么可以交流的可以给我邮件. 加我好友
java 连续播放图片
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""
html xmlns=""
head
titlepic player/title
script type="text/javascript" src=""/script
script type="text/javascript" src=""/script
/head
style type="text/css"
img{border:0;}
/style
body
div id="picplayer" style="position:relative;overflow:hidden;width:300px;height:300px;clear:none;border:solid 1px #ccc;"
there is a pic-player
/div
script
var p = $('#picplayer');
var pics1 = [{url:'',link:'',time:5000},{url:'',link:'',time:4000},{url:'',link:'',time:6000},{url:'',link:'',time:6000},{url:'',link:'',time:6000}];
initPicPlayer(pics1,p.css('width').split('px')[0],p.css('height').split('px')[0]);
//
//
function initPicPlayer(pics,w,h)
{
//选中的图片
var selectedItem;
//选中的按钮
var selectedBtn;
//自动播放的id
var playID;
//选中图片的索引
var selectedIndex;
//容器
var p = $('#picplayer');
p.text('');
p.append('div id="piccontent"/div');
var c = $('#piccontent');
for(var i=0;ipics.length;i++)
{
//添加图片到容器中
c.append('a href="'+pics[i].link+'" target="_blank"img id="picitem'+i+'" style="display: none;z-index:'+i+'" src="'+pics[i].url+'" //a');
}
//按钮容器,绝对定位在右下角
p.append('div id="picbtnHolder" style="position:absolute;top:'+(h-25)+'px;width:'+w+'px;height:20px;z-index:10000;"/div');
//
var btnHolder = $('#picbtnHolder');
btnHolder.append('div id="picbtns" style="float:right; padding-right:1px;"/div');
var btns = $('#picbtns');
//
for(var i=0;ipics.length;i++)
{
//增加图片对应的按钮
btns.append('span id="picbtn'+i+'" style="cursor:pointer; border:solid 1px #ccc;background-color:#eee; display:inline-block;" '+(i+1)+' /span ');
$('#picbtn'+i).data('index',i);
$('#picbtn'+i).click(
function(event)
{
if(selectedItem.attr('src') == $('#picitem'+$(this).data('index')).attr('src'))
{
return;
}
setSelectedItem($(this).data('index'));
}
);
}
btns.append(' ');
///
setSelectedItem(0);
//显示指定的图片index
function setSelectedItem(index)
{
selectedIndex = index;
clearInterval(playID);
//alert(index);
if(selectedItem)selectedItem.fadeOut('fast');
selectedItem = $('#picitem'+index);
selectedItem.fadeIn('slow');
//
if(selectedBtn)
{
selectedBtn.css('backgroundColor','#eee');
selectedBtn.css('color','#000');
}
selectedBtn = $('#picbtn'+index);
selectedBtn.css('backgroundColor','#000');
selectedBtn.css('color','#fff');
//自动播放
playID = setInterval(function()
{
var index = selectedIndex+1;
if(index pics.length-1)index=0;
setSelectedItem(index);
},pics[index].time);
}
}
/script
/body
/html
把你的图片地址 在jsp加载的时候 循环上去 就可以了 如果可以 记得给分哦
java怎么样才能使图片在窗口内实现循环播放图片!谢谢!
html
head
style
#d1{
width:100px;
height:100px;
background-color:white;
position:relative;
}
/style
script
function go2(){
var div = document.getElementById('d1');
var v1 = div.style.left;
div.style.left = parseInt(v1) + 50 + 'px';
}
function go1(){
var taskId = setInterval(go2,1000);
setTimeout(function(){
clearInterval(taskId);
},7000);
}
/script
/head
body
div id="d1" style="left:20px;"
img src="图片的地址" id="img1"/a href="javascript:;"
/div
input type="button" value="走吧" onclick="go1();"/
/body
/html
你点击这个按钮的话 可以实现每一秒走一下。