Pages

Wednesday 9 July 2014

鼠标效果(文字绕着鼠标转)(message circle your cursor)

在这里,给大家介绍一个鼠标效果~~~文字绕着鼠标转(message circle your cursor)

Description: Have a textual message circle your mouse cursor and follow it around using this DHTML script.
简介:文字会跟着你的鼠标,而且会绕着转,这是使用DHTML。


English: Layout Add a Gadget HTML/JawaScript
华语:布局 添加小工具 HTML/JawaScript

复制(ctrl + c)以下的代码放进去(Copy the code below and paste it)
<style type="text/css">
/* Circle Text Styles */
#outerCircleText {
/* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
font-style: italic;
font-weight: bold;
font-family: 'comic sans ms', verdana, arial;
color: #000;
/* End Optional */

/* Start Required - Do Not Edit */
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
/* End Required */
/* End Circle Text Styles */
</style>
<script type="text/javascript">

;(function(){

// Your message here (QUOTED STRING)
var msg = "你的文本/Your Text Here";

/* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */

// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 24;

// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 2;

// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;

// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 10;

// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.4;

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;

////////////////////// Stop Editing //////////////////////

if (!window.addEventListener && !window.attachEvent || !document.createElement) return;

msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,

mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},

makecircle = function(){ // rotation/positioning
if(init.nopy){
o.style.top = (b || document.body).scrollTop + 'px';
o.style.left = (b || document.body).scrollLeft + 'px';
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
d = document.getElementById('iemsg' + i).style;
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
};
},

drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},

init = function(){ // appends message divs, & sets initial values for positioning arrays
if(!isNaN(window.pageYOffset)){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
d = document.createElement('div'); d.id = 'iemsg' + i;
d.style.height = d.style.width = a + 'px';
d.appendChild(document.createTextNode(msg[i]));
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},

ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener('scroll', ascroll, false);
};

o.id = 'outerCircleText'; o.style.fontSize = size + 'px';

if (window.addEventListener){
window.addEventListener('load', init, false);
document.addEventListener('mouseover', mouse, false);
document.addEventListener('mousemove', mouse, false);
if (/Apple/.test(navigator.vendor))
window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
window.attachEvent('onload', init);
document.attachEvent('onmousemove', mouse);
};

})();

</script>
Red color = can change it,
红色 = 可改的,

你可以只改这两样东西:
var msg = "你的文本/Your Text Here"; ,把你的文本/Your Text Here改成你要的字。
var size = 24; ,把24改成你要的字体大小。
color: #000; ,把000改成你要的颜色(我的博客的右边有颜色代码)。

Another cursor effect:
  1. Custome cursor script (Crosshair mouse cursor) 
  2. Image Trail Script 
  3. Comet Trail 
  4. Kissing trail

如何换鼠标?How to change cursor?

<span style="cursor:crosshair">你要改变鼠标样式的内容(可以是整个帖子,或者是部分内容)插入这里就可以了。</span>

<span style="cursor:crosshair">Put your contents or words here (can be one part of the contents or all of the contents) </span>

以下是其他鼠标的样式 / Other cursor pattern:
<span style="cursor:hand">  hand:是大家所熟悉的手型。</span>
<span style="cursor:crosshair">  crosshair:是十字型样式。</span>
<span style="cursor:text">  text:是平时鼠标移动到文本上的样式。</span>
<span style="cursor:wait">  wait:是等待的效果。</span>
<span style="cursor:default">  default:是默认的那种效果。</span>
<span style="cursor:help">  help:是带问号的鼠标样式。</span>
<span style="cursor:e-resize">  e-resize:是向右的箭头。</span>
<span style="cursor:ne-resize">  ne-resize:是向右上方的箭头。</span>
<span style="cursor:n-resize">  n-resize:是向上的箭头。</span>
<span style="cursor:nw-resize">  nw-resize:是向左上方的箭头。</span>
<span style="cursor:w-resize">  w-resize:是向左的箭关。</span>
<span style="cursor:sw-resize">  sw-resize:是向左下的箭头。</span>
<span style="cursor:s-resize">  s-resize:是向下的箭头。</span>
<span style="cursor:se-resize">  se-resize:是向右下方的箭头。</span>
<span style="cursor:auto">  auto:是系统自动的效果。 </span>

 Examples/例子:
1. crosshair:是十字型的样式。
2. help:是带问号的鼠标样式。
3. wait:是等待的效果。
4. w-resize:是向左的箭关。

如何换鼠标(图片)?How to change cursor (picture)?
http://ttrending.blogspot.com/2014/07/blog-post_9.html

如何换鼠标(图片)?How to change cursor (picture)?

换鼠标(图片)教程

1.  布局 添加小工具HTML/JawaScript

2.  把以下代码放进去
<style type="text/css">body, a, a:hover {cursor: url(鼠标网址), progress;}</style>

3.  把鼠标网址换成你要的鼠标网址。完成:)
例子:<style type="text/css">body, a, a:hover {cursor: url(http://cur.cursors-4u.net/anime/ani-11/ani1090.cur), progress;}</style>

以下有提供几款鼠标:
http://cur.cursors-4u.net/anime/ani-11/ani1090.cur

http://cur.cursors-4u.net/others/oth-4/oth305.cur

http://cur.cursors-4u.net/symbols/sym-6/sym597.cur

想找更多鼠标,请点击这http://www.cursors-4u.com/

Change Cursor (Picture) Tutorial

1.  Layout Add a Gadget HTML/JawaScript

2.  Copy the HTML below and paste it
<style type="text/css">body, a, a:hover {cursor: url(Cursor URL), progress;}</style>

3.  Change the Cursor URL into the Cursor's URL that you want. Done :)
Example: <style type="text/css">body, a, a:hover {cursor: url(http://cur.cursors-4u.net/anime/ani-11/ani1090.cur), progress;}</style>

Here have some cursor url:
http://cur.cursors-4u.net/anime/ani-11/ani1090.cur

http://cur.cursors-4u.net/others/oth-4/oth305.cur

http://cur.cursors-4u.net/symbols/sym-6/sym597.cur

More cursor, please click here : http://www.cursors-4u.com/

Tuesday 8 July 2014

SketchUp Pro 2014 with Crack

SketchUp Pro 2014 is a very nice software for sketching guys, you can use it to draw 3D car, building, furniture, and so on.

Features:

  • A smarter way to make 3D modeling 
  • Now you can push and pull selected faces 
  • Step by step tips and hints (tutorial) 
  • It is compatible with Google Maps and Google Earth (upload)
  • Export your design CAD format 
  • Color imagery 
  • Match Photo enhancement 
  • Precise move in layout 
  • Add text and graphics to designs 


Minimum Requirement to run Google SketchUp Pro 2014:

  • Windows XP or higher versions 
  • 1 GHz Processor 
  • 512 MB RAM required
  • Should have a Graphic Card


How to crack?
  1. Download SketchUp Pro 2014
  2. Unzip the SketchUp Pro 2014
  3. Install SketchUpPro-en
  4. Open the Cracked Files folder, then copy and replace it.
  5. Done :)

Download:
SketchUp Pro 2014.rar

(Sources from internet)

Tower of Saviors Cheat/Automatic bead software

1. TOS_Worker v2.00 (windows)

Software name: Tos_Worker v2.00
System: Windows
Fees: Free
Tos_Worker v2.00 has a lot of features which are limit the automatic bead time, combo number control, keep bead, HP bead priority, eliminate 5/6 bead, etc. This software runs on Windows computer, but you need to install another software which is Bluestacks (Bluestack is Android games' emulator).

How to install?
  1. Download Bluestacks.exe
  2. Install Bluestacks
  3. If Bluestacks notices you to upgrade your graphic, then must upgrade it
  4. Run Bluestacks, and go to Google Play to download Tower of Saviors
  5. Download the software(example: Facebook) that you use to bind your TOS account, so that you can login your account.
  6. Open TOS, login your account
  7. Download ToS_Worker.rar
  8. Extract ToS_Worker.rar into a folder
  9. Download ToS_MultiLanguages20140311.rar (language set)
  10. Extract ToS_MultiLanguages20140311.rar into the same folder
  11. Run ToS_Worker, and set the things you want
  12. Go to battle, then click "start" will start automatic bead
  13. Done :)
Download here:
ToS_Worker.exe
ToS_MultiLanguages20140311.rar
Bluestacks.exe

Official Site:
TigerZZ

2. Rainbow Path (Android)

Software name: Rainbow Path
System: Android
Fees: free
Note: No root needed
This is a semi-auto bead software, it shows the route for you, then you just need to follow route to move the bead. It is very powerful, it can make a most combo route in a short time. You just need to install in your Android phone, then you can use it, no root needed, no computer needed, it is very convenient.

Download:
RainbowPath_5.apk

Monday 7 July 2014

神魔之塔 自动转珠 软件介绍

1. 神魔之塔自动转珠助手v2.00(Windows)

软件名:神魔之塔自动转珠助手v2.00 (ToS_Worker)
系统:Windows
费用:免费
神魔之塔自动转珠助手v2.00拥有许多功能包括可以限制转珠时间,选择combo数量,收珠,心珠优先,消5/6珠等等。看看上图吧。这软件在Windows电脑运行,必须先安装Bluestacks(Bluestacks是用来运行神魔之塔)。

安装说明:
  1. 下载Bluestacks.exe
  2. 安装Bluestacks
  3. Bluestacks有提示升级graphic,就必须升级。
  4. 打开Bluestacks,去Google Play下载神魔之塔
  5. 如果你的神魔之塔账号是用Facebook绑定的,那就下载Facebook,为了打开你的神魔之塔账号。
  6. 打开神魔之塔,打开你的账号
  7. 下载ToS_Worker.rar
  8. 解压ToS_Worker.rar进一个文件夹里
  9. 下载ToS_MultiLanguages20140311.rar(语言)
  10. 把ToS_MultiLanguages20140311.rar也解进同一个文件夹里。
  11. 打开ToS_Worker(神魔之塔自动转珠助手),然后设置你要的功能
  12. 进入卡关,按“开始”就开始会自动转珠了
  13. 完成 :)
下载:

2.彩虹路径(Android)

软件名:彩虹路径(Rainbow Path)
系统:Android
费用:免费
备注:无需root
这是一个半自动的转珠软件,这软件会显示出转珠路线,只要跟着转就可以了。它能在短时间内计算出最多 Combo 的转珠路线。只要安装在Android就可使用,无需root也可使用,非常方便。

下载;
RainbowPath_5.apk

Wednesday 2 July 2014

Sony Vegas Pro 13 build 310 Crack

New Sony Vegas Pro 13 build 310 crack free download.

How to crack?
  1. Install Sony Vegas Pro 13
  2. After installed, don't open it
  3. Run the crack
  4. Click "Patch"
  5. Enjoy Sony Vegas Pro 13

Download Sony Vegas Pro 13 here:
http://www.sonycreativesoftware.com/download/trials/vegaspro

Download crack here:
http://www.mediafire.com/download/ct33vg58thgka74/Sony_Vegas_Pro_13__Patch.zip

Sony Vegas Pro 12

Sony Vegas is a very powerful tool, it has a lot of functions including trim video, edit video, add effect, song, and so on.

How to crack?
  1. Install Sony Vegas Pro 12
  2. After installed, don't open it
  3. Run the crack
  4. Click "Patch", then it will show "ok", that means crack is done.
  5. Enjoy Sony Vegas Pro 12

Download Sony Vegas Pro 12 here:
waiting for upload

Download Sony Vegas Pro 12 crack here:
https://www.mediafire.com/?t5ah7s9xjhx6h1k
back to top