當前位置:首頁 » 玫丹百香 » 全屏幕玫瑰

全屏幕玫瑰

發布時間: 2022-08-03 17:29:56

❶ 求一個名叫「禮物」,一點開就能全屏幕開滿玫瑰花的小軟體,無毒

網路搜索「祝福神器」 一款讓別人手機全屏開滿玫瑰的Android應用

❷ 怎麼讓整個電腦屏幕下滿玫瑰花瓣

是一款可以讓【電腦開滿鮮花】的趣味小軟體,可以讓你的電腦屏幕開滿漂亮芳香的玫瑰花,不動滑鼠,鮮花會開個不停

❸ 求一個一點就可以出現全屏幕玫瑰花的程序 ~~謝謝了。我的郵箱[email protected]

已發送 一千朵玫瑰花

❹ 求一個一點就可以出現全屏幕玫瑰花的程序...

送兩個給你!呵呵!另一個是在屏幕上養花的!半小時開花哦!qq管家沒報毒! 看看到了沒

❺ 有沒有打開整個屏幕都是玫瑰的軟體,跪求

已經給你發到郵箱了

❻ 打開就能讓電腦滿屏幕出現玫瑰花的小軟體

你好,可以找一張玫瑰花的圖案,然後直接進入「控制面板」的「顯示」設置就可以了吧

❼ 求求求!!!!!讓屏幕開滿玫瑰!!!!

已經發送,收到請採納~

時 間:2012年2月5日(星期天) 晚上11:26 純文本 |
收件人: xey5284230 <[email protected]>
附 件:1 個 ( rosescree.zip )

❽ 求一個名叫「禮物」,一點開就全屏幕玫瑰花,或者有「生日快樂」的小軟體,謝謝!請發至[email protected]

已發送啦 注意查收~

❾ 求個小代碼,一打開全屏幕就是玫瑰花飄飄的,過幾秒後就現在中秋快樂。

java jsp的啊
第一個:把如下代碼加入<body>區域中,設置文字的話你自己弄吧

<style>
.drop { position: absolute; width: 3; filter: flipV(), flipH(); font-size: 40; color: blue }
</style>
<script language="javascript">

snow = false; // false-rain; true-snow
snowsym = " * " //These are the symbols for each
rainsym = " * " //You can put images here.
howmany = 15 //How many drops/snowflakes?

/**************Do not need to change anything below***********/
if(snow){sym = snowsym; speed=1; angle=10; drops=howmany}
else{sym = rainsym; speed=50; drops=howmany; angle=6}
movex = -speed/angle; movey = speed; count = 0;

function moverain(){
for(move = 0; move < drops; move++){
xx[move]+=movex; yy[move]+=mv[move];
hmm = Math.round(Math.random()*1);
if(xx[move] < 0){xx[move] = maxx+10;}
if(yy[move] > maxy){yy[move] = 10;}
drop[move].left = xx[move]
drop[move].top = yy[move]+document.body.scrollTop;
}setTimeout('moverain()','1')}

</script>
<script language="javascript">

if (document.all){
drop = new Array(); xx = new Array(); yy = new Array(); mv = new Array()
ly = "document.all[\'"; st = "\'].style"
for(make = 0; make < drops; make++){
document.write('<div id="drop'+make+'" class=drop>'+sym+'</div>');
drop[make] = eval(ly+'drop'+make+st);
maxx = document.body.clientWidth-40
maxy = document.body.clientHeight-40
xx[make] = Math.random()*maxx;
yy[make] = -100-Math.random()*maxy;
drop[make].left = xx[make]
drop[make].top = yy[make]
mv[make] = (Math.random()*5)+speed/16;
drop[make].fontSize = (Math.random()*10)+20;
if(snow){col = 'white'}else{col = 'blue'}
drop[make].color = col;
}
window.onload=moverain
}
</script>

第二種:建議你用這個,你可以在加幾個圖片
腳本說明:

第一步:把如下代碼加入<body>區域中
<script language="JavaScript">
<!--

Pic=new Array('photo/04261.gif','photo/04262.gif','photo/04263.gif','photo/04264.gif','photo/04265.gif')
//Smoothness of animation depends on the number of images and they're file size.
MaxSpeed=5;
MinSpeed=2;

load = new Array()
for(i=0; i < Pic.length; i++)
{
load[i] = new Image();
load[i].src = Pic[i];
}
amount=Pic.length;
ns=(document.layers)?1:0;
if (ns){
for (i=0; i < amount; i++){
document.write("<LAYER NAME='netscape"+i+"' LEFT=0 TOP=0><img name='netpics' src="+load[i].src+"></LAYER>")}
}
else{
document.write("<div style='position:absolute;top:0px;left:0px'><div style='position:relative'>");
for (i=0; i < amount; i++){
document.write("<img id='explorer' src='"+load[i].src+"' style='position:absolute;top:0px;left:0px'>")}
document.write("</div></div>")
}
VB=0;
HB=0;
R=new Array();
PB=new Array();
RD=new Array();
Y=new Array();
X=new Array();
D=new Array();
SP=new Array();
BY=new Array();
BX=new Array();
for (i=0; i < amount; i++){
Y[i]=10;
X[i]=10;
D[i]=Math.floor(Math.random()*70+10);
SP[i]=Math.floor(Math.random()*MaxSpeed+MinSpeed);
}
function Curve(){
plusMinus=new Array(1,-1,2,-2,3,-3,0,1,-1,0,5,-5)
for (i=0; i < amount; i++){
R[i]=Math.floor(Math.random()*plusMinus.length);
RD[i]=plusMinus[R[i]];
}
setTimeout('Curve()',1500);
}
function MoveRandom(){
var H=(document.layers)?window.innerHeight:document.body.clientHeight;
var W=(document.layers)?window.innerWidth:document.body.clientWidth;
var YS=(document.layers)?window.pageYOffset:document.body.scrollTop;
var XS=(document.layers)?window.pageXOffset:document.body.scrollLeft;

for (i=0; i < amount; i++){
BY[i]=-load[i].height;
BX[i]=-load[i].width;
PB[i]=D[i]+=RD[i];
y = SP[i]*Math.sin(PB[i]*Math.PI/180);
x = SP[i]*Math.cos(PB[i]*Math.PI/180);
if (D[i] < 0) D[i]+=360;
Y[i]+=y;
X[i]+=x;
VB=180-D[i];
HB=0-D[i];
//Corner rebounds! not necessary but looks nice.
if ((Y[i] < 1) && (X[i] < 1)) {Y[i]=1;X[i]=1;D[i]=45;}
if ((Y[i] < 1) && (X[i] > W+BX[i])) {Y[i]=1;X[i]=W+BX[i];D[i]=135;}
if ((Y[i] > H+BY[i]) && (X[i] < 1)) {Y[i]=H+BY[i];X[i]=1;D[i]=315;}
if ((Y[i] > H+BY[i]) && (X[i] > W+BX[i])) {Y[i]=H+BY[i];X[i]=W+BX[i];D[i]=225;}
//Edge rebounds!
if (Y[i] < 1) {Y[i]=1;D[i]=HB;}
if (Y[i] > H+BY[i]) {Y[i]=H+BY[i];D[i]=HB;}
if (X[i] < 1) {X[i]=1;D[i]=VB;}
if (X[i] > W+BX[i]) {X[i]=W+BX[i];D[i]=VB;}
var layer=(document.layers)?document.layers['netscape'+i]:explorer[i].style;
layer.top=Y[i]+YS;
layer.left=X[i]+XS;
}
setTimeout('MoveRandom()',10);
}
function sTaRt(){Curve();MoveRandom()}
//-->
</script>
第二步:
把如下代碼加入<body>區域中<body bgcolor="#ffffff" onLoad="if (document.all||document.layers) sTaRt()">

第三個:這個是文字的顯示,你自己決定採用上面那個後加進去
腳本說明:

第一步:把如下代碼加入<body>區域中
<script LANGUAGE="JavaScript">

function init() {
setTimeout("shake(3)",1000);
// setTimeout("this.focus()",4000);
setTimeout("shake(3)",4100);
}

function shake(n) {
if (self.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
self.moveBy(0,i);
self.moveBy(i,0);
self.moveBy(0,-i);
self.moveBy(-i,0);
}
}
}
setTimeout("shake(5)", 5000);
}

</script>

<script language="JavaScript">
<!-- begin
var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}
tl=new textlist
(
"李鵬會見安得拉邦首席部長奈杜",
"述評:發展新世紀睦鄰友好合作關系",
"我國外匯儲備已達一千六百五十六億美元 ",
"人民日報18日社論:推進新的農業科技革命 ",
"「神舟二號」飛船軌道艙留軌繼續進行空間科學探測試驗",
"聯合國證實貧鈾彈含有鈾-236",
"羅伯遜稱北約將繼續東擴",
"巴方指責以色列暗殺其高級官員 ",
"亞太議會論壇第九屆年會在智利開幕",
"專電:布希宣誓就職典禮准備就緒",
"專電:布希宣誓就職典禮准備就緒 "
);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";
if(pos++==l)
{
pos=0;
setTimeout("textticker()",1000);
x++;
if(x==max) x=0; l=tl[x].length;
}
else
setTimeout("textticker()",50);
}
// end -->
</script>
<form name="tickform"><input type=text name="tickfield" size=33></form>
第二步:把如下代碼加入<body>區域中<body bgcolor=#000000" onload="init();textticker()">

能把你的就這么多了 看你的了

熱點內容
深根花卉 發布:2025-10-20 08:51:57 瀏覽:737
詩意花藝 發布:2025-10-20 08:43:24 瀏覽:824
樹枝橡皮泥插花 發布:2025-10-20 08:42:21 瀏覽:445
海棠獎章 發布:2025-10-20 08:42:19 瀏覽:99
國畫蘭花教程 發布:2025-10-20 08:37:19 瀏覽:830
用手工紙做玫瑰花 發布:2025-10-20 08:25:41 瀏覽:964
夢見野百合花 發布:2025-10-20 08:04:13 瀏覽:546
土豆蘿卜西蘭花歌詞 發布:2025-10-20 08:01:16 瀏覽:577
剪紙2荷花 發布:2025-10-20 08:00:34 瀏覽:285
紅盒荷花煙 發布:2025-10-20 08:00:29 瀏覽:893