小黄人变声专家 把自己声音变成小黄人的软件 小黄人快跑

小黄人变声专家软件


下载(音频变调变速器-小黄人软件.zip)免费 链接: http://pan.baidu.com/s/1gd2Mzvl 密码: 5nzg
自行解压,双击wuxia.exe运行
1将音频文件导入,支持wav,mp3和wma。
2要将“保持音色”前的勾去掉
3变调,调整为“升6个半音”或者是“升7个半音”,试听一下
4导出

小黄人软件--程序开发 定制专家chenhao0568.taobao.com







代码为转载,与本主题无关

package SoundTest; 
import java.awt.*; 
import java.awt.event.*; 
import java.applet.*; 
import javax.swing.*; 
import java.net.*; 
public class test extends JApplet { 
boolean isStandalone = false; 
String sound; 
JButton jButtonPlay = new JButton(); 
JButton jButtonLoop = new JButton(); 
JButton jButtonStop = new JButton(); 
JLabel jLabel1 = new JLabel(); 
AudioClip clip; 
//Get a parameter value 
public String getParameter(String key, String def) { 
return isStandalone ? System.getProperty(key, def) : 
(getParameter(key) != null ? getParameter(key) : def); 
} 
//Construct the applet 
public test() { 
} 
//Initialize the applet 
public void init() { 
try { 
jbInit(); 
} 
catch(Exception e) { 
e.printStackTrace(); 
} 
} 
//Component initialization 
private void jbInit() throws Exception { 
jButtonPlay.setText("Play"); 
jButtonPlay.setBounds(new Rectangle(50, 85, 80, 40)); 
jButtonPlay.addMouseListener(new java.awt.event.MouseAdapter() { 
public void mouseClicked(MouseEvent e) { 
jButtonPlay_mouseClicked(e); 
} 
}); 
this.setSize(new Dimension(400,200)); 
this.getContentPane().setLayout(null); 
jButtonLoop.setText("Loop"); 
jButtonLoop.setBounds(new Rectangle(150, 85, 80, 40)); 
jButtonLoop.addMouseListener(new java.awt.event.MouseAdapter() { 
public void mouseClicked(MouseEvent e) { 
jButtonLoop_mouseClicked(e); 
} 
}); 
jButtonStop.setText("Stop"); 
jButtonStop.setBounds(new Rectangle(250, 85, 80, 40)); 
jButtonStop.addMouseListener(new java.awt.event.MouseAdapter() { 

public void mouseClicked(MouseEvent e) { 
jButtonStop_mouseClicked(e); 
} 
}); 
jLabel1.setText("Sound Test Demo"); 
jLabel1.setBounds(new Rectangle(109, 28, 186, 28)); 
this.getContentPane().add(jButtonPlay, null); 
this.getContentPane().add(jButtonStop, null); 
this.getContentPane().add(jButtonLoop, null); 
this.getContentPane().add(jLabel1, null); 
try { sound = this.getParameter("clip", "sound.AU"); } catch (Exce 
ption e) { e.printStackTrace(); } 
if(sound!=null){ 
try{ 
clip=JApplet.newAudioClip (new URL(getCodeBase(),sound)); 

} 
catch(MalformedURLException e){ 
System.out.println ("Bad URL"); 
} 
} 
} 
//Get Applet information 
public String getAppletInfo() { 
return "Applet Information"; 
} 
//Get parameter info 
public String[][] getParameterInfo() { 
String[][] pinfo = 
{ 
{"clip", "String", "sound.AU"}, 
}; 
return pinfo; 
} 
void jButtonPlay_mouseClicked(MouseEvent e) { 
clip.play(); 
} 
void jButtonLoop_mouseClicked(MouseEvent e) { 
clip.loop(); 
} 
void jButtonStop_mouseClicked(MouseEvent e) { 
clip.stop(); 
} 
} 


  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
黄人动画是一个非常有趣的CSS动画,可以通过CSS3中的一些特性来实现。以下是一个基本的小黄人动画的CSS代码: ```css /* 设置小黄人动画的容器 */ .minion { position: relative; width: 250px; height: 250px; } /* 设置小黄人的身体 */ .minion .body { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; border-radius: 50%; background-color: yellow; } /* 设置小黄人的眼睛 */ .minion .eye { position: absolute; top: 30%; left: 25%; width: 20px; height: 20px; border-radius: 50%; background-color: white; } /* 设置小黄人眼睛里的黑色部分 */ .minion .eye::before { content: ''; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; border-radius: 50%; background-color: black; } /* 设置小黄人眼睛的另一只 */ .minion .eye.right { left: auto; right: 25%; } /* 设置小黄人的嘴巴 */ .minion .mouth { position: absolute; top: 60%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 20px; border-radius: 0px 0px 20px 20px; border-bottom: solid black 3px; } /* 设置小黄人的带子 */ .minion .goggles { position:absolute; top:-10px; left:-10px; width:120px; height:120px; border-radius:50%; border:10px solid #2D2D2D; background-color:white; } /* 设置小黄人的带子上面的金属部分 */ .minion .goggles::before { content:""; display:block; position:absolute; top:-8px; left:-8px; width:10px; height:10px; border-radius:50%; background-color:#B8B8B8; } /* 设置小黄人的带子下面的金属部分 */ .minion .goggles::after { content:""; display:block; position:absolute; bottom:-8px; right:-8px; width:10px; height:10px; border-radius:50%; background-color:#B8B8B8 } /* 定义小黄人动画的关键帧 */ @keyframes rotate { from { transform : rotate(0deg); } to { transform : rotate(360deg); } } /* 设置小黄人动画 */ .minion:hover .goggles, .minion:hover .eye::before { animation-name: rotate; /* 使用刚才定义的关键帧 */ animation-duration:2s; /* 持续时间为2秒 */ animation-timing-function: linear; /* 时间函数为线性 */ animation-iteration-count: infinite; /* 循环无限次 */ } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小黄人软件

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值