⑴ 網頁製作是如何實現圖片切換的
新建項目文件夾如下圖所示
⑵ 如何在ppt里的一張幻燈片上實現圖片的自由切換!
這個問題不難,設置圖片進入,位置放在圖片顯示區域,動畫設置後觸發器設為圖1、圖2、......即可。但是,要注意點擊先後順序,因為有疊放層次問題。下面是我做的動畫,看看效果。
⑶ 在HTML中用css如何實現圖片切換!!!
該圖片切換特效實現很簡單,而且兼容性很好。
html頁面如下
<div class="wrapper">
<div id="focus">
<ul>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/01.jpg" alt="QQ商城焦點圖效果下載" /></a></li>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/02.jpg" alt="QQ商城焦點圖效果教程" /></a></li>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/03.jpg" alt="jquery商城焦點圖效果" /></a></li>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/04.jpg" alt="jquery商城焦點圖代碼" /></a></li>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/05.jpg" alt="jquery商城焦點圖源碼" /></a></li>
</ul>
</div>
</div><!-- wrapper end -->
</body>
css樣式
<style type="text/css">
* {margin:0; padding:0;}
body {font-size:12px; color:#222; font-family:Verdana,Arial,Helvetica,sans-serif; background:#f0f0f0;}
.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.clearfix {zoom:1;}
ul,li {list-style:none;}
img {border:0;}
.wrapper {width:800px; margin:0 auto; padding-bottom:50px;}
/* qqshop focus */
#focus {width:800px; height:280px; overflow:hidden; position:relative;}
#focus ul {height:380px; position:absolute;}
#focus ul li {float:left; width:800px; height:280px; overflow:hidden; position:relative; background:#000;}
#focus ul li div {position:absolute; overflow:hidden;}
#focus .btnBg {position:absolute; width:800px; height:20px; left:0; bottom:0; background:#000;}
#focus .btn {position:absolute; width:780px; height:10px; padding:5px 10px; right:0; bottom:0; text-align:right;}
#focus .btn span {display:inline-block; _display:inline; _zoom:1; width:25px; height:10px; _font-size:0; margin-left:5px; cursor:pointer; background:#fff;}
#focus .btn span.on {background:#fff;}
#focus .preNext {width:45px; height:100px; position:absolute; top:90px; background:url(img/sprite.png) no-repeat 0 0; cursor:pointer;}
#focus .pre {left:0;}
#focus .next {right:0; background-position:right top;}
</style>
js腳本
$(function() {
var sWidth = $("#focus").width(); //獲取焦點圖的寬度(顯示面積)
var len = $("#focus ul li").length; //獲取焦點圖個數
var index = 0;
var picTimer;
//以下代碼添加數字按鈕和按鈕後的半透明條,還有上一頁、下一頁兩個按鈕
var btn = "<div class='btnBg'></div><div class='btn'>";
for(var i=0; i < len; i++) {
btn += "<span></span>";
}
btn += "</div><div class='preNext pre'></div><div class='preNext next'></div>";
$("#focus").append(btn);
$("#focus .btnBg").css("opacity",0.5);
//為小按鈕添加滑鼠滑入事件,以顯示相應的內容
$("#focus .btn span").css("opacity",0.4).mouseenter(function() {
index = $("#focus .btn span").index(this);
showPics(index);
}).eq(0).trigger("mouseenter");
//上一頁、下一頁按鈕透明度處理
$("#focus .preNext").css("opacity",0.2).hover(function() {
$(this).stop(true,false).animate({"opacity":"0.5"},300);
},function() {
$(this).stop(true,false).animate({"opacity":"0.2"},300);
});
//上一頁按鈕
$("#focus .pre").click(function() {
index -= 1;
if(index == -1) {index = len - 1;}
showPics(index);
});
//下一頁按鈕
$("#focus .next").click(function() {
index += 1;
if(index == len) {index = 0;}
showPics(index);
});
//本例為左右滾動,即所有li元素都是在同一排向左浮動,所以這里需要計算出外圍ul元素的寬度
$("#focus ul").css("width",sWidth * (len));
//滑鼠滑上焦點圖時停止自動播放,滑出時開始自動播放
$("#focus").hover(function() {
clearInterval(picTimer);
},function() {
picTimer = setInterval(function() {
showPics(index);
index++;
if(index == len) {index = 0;}
},4000); //此4000代表自動播放的間隔,單位:毫秒
}).trigger("mouseleave");
//顯示圖片函數,根據接收的index值顯示相應的內容
function showPics(index) { //普通切換
var nowLeft = -index*sWidth; //根據index值計算ul元素的left值
$("#focus ul").stop(true,false).animate({"left":nowLeft},300); //通過animate()調整ul元素滾動到計算出的position
//$("#focus .btn span").removeClass("on").eq(index).addClass("on"); //為當前的按鈕切換到選中的效果
$("#focus .btn span").stop(true,false).animate({"opacity":"0.4"},300).eq(index).stop(true,false).animate({"opacity":"1"},300); //為當前的按鈕切換到選中的效果
}
});
用到的左右切換圖片
⑷ 如何用java實現圖片切換
如果是普通切換的話,直接定義一個int值,根據int值的不同 來畫不同的東西就可以了
int index;
switch(index){
case 0:
g.drawImage(a,0,0,20);
break;
case 1:
g,drawImage(b,0,0,20);
break;
.................................
}
如果用漸變效果的話,創建一個數組記錄下一張要話的圖片的所有RGB值,初始設置所有像素點的透明度為100%,即完全透明,然後一點點的把透明度降低,直到為0,這樣就把第二章圖片用漸變的方法繪制出來了,這時就可以不用畫第一張圖片了。
⑸ ppt中,怎樣進行圖片切換
先選第一張圖片,然後加入一個退出動畫,然後選第二張圖,加上一個進入動畫,將這個動畫的開始方式改為與上一動畫同時(2010)/之前(2007),就可以了
⑹ 怎麼實現圖片中的切換啊
如何在FOXPRO6.0的表單中讓插入的圖像隨數據的變化而變化,也就是每一組數據對應一幅照片 瀏覽次數:28次懸賞分:0 | 提問時間:2011-7-22 16:05 | 提問者:gao0588 | 問題為何被關閉
其他回答 共2條
准備工作:
如果你想要數據與圖片一一對應,那你就要准備很多的圖片了(就看你的數據范圍了,如果是0到9,那就准備10張圖片就可以了)。
准備一些圖片,把他們放在同一個文件夾里。如VFP里建一個pic文件夾。把圖片文件重新以數字進行命名,如:1.jpg, 12.jpg 。看你的數據范圍來定圖片數量喲。
VFP的操作步驟:
1、你建立一個表單。
2、在屬性里找到 Picture屬性,選中你上面做好的圖片。
3、在表單中建立一個文本框。
4、雙擊表單,KeyPress事件里輸入
THISFORM.PICTURE = "d:\programfiles\microsoft visual foxpro 9\pic\ALLTRIM( Thisform.text1.Value)+".jpg"
thisform.Refresh
5、關閉,保存,運行。
6、在文本框中輸入數字,回車。看看圖象是否有變化。輸入的數據必須要有相應的圖片文件名。否則沒有效果。
此程序在VFP9.0中測試通過。
⑺ android如何實現圖片自動切換
如果是不同圖片的手動切換,可以用ViewPager,可以裝載不同的view。或者用Gallery,可以實現像照片那樣的圖片切換。如果是要做成圖片自動變化,像gif那樣的動畫,可以用AnimationDrawable這個類,在ImageView中展示詳細的就不說了,網上代碼一大堆。。。
⑻ html怎樣實現圖片自動切換
1、首先,打開html編輯器,新建html文件,例如:index.html。
⑼ CSS怎麼實現更換圖片
CSS能更換的圖片,只能存在於樣式中。所以,這個圖片也只能是背景圖片。
一般是結合:hover來實現的。例如:
.mydiv{
background:圖片1 no-repeat;
height:100px;
widht:100px;
}
.mydiv:hover{
background:圖片2 no-repeat;
}
這樣就實現了圖片1和圖片2的滑鼠移上去的切換。