这是我的小提琴:http://jsfiddle.net/ZYJsK/302/
我想动画像这个网站的文字:http://vegas.jaysalvat.com/
我的Js:
array( $objectInstance, 'method_name' )
任何建议会很棒吗?万分感谢
答案 0 :(得分:2)
您应该绑定到范围变量并通过计时器更改它并调用$apply
。
像这样。
$scope.initComVal = '.com';
$scope.comval = '';
function changeText (){
if($scope.comval.length === $scope.initComVal.length)
$scope.comval = '';
else
{
$scope.comval = $scope.initComVal.substring(0, $scope.comval.length+1);
$scope.$apply();
}
}